From: Henrik Grimler Date: Wed, 9 Aug 2017 21:09:01 +0000 (+0200) Subject: Properly package texlive and split package into texlive & texlive-bin (#1203) X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/commitdiff_plain/dce832a25d7cbc27d69802bee8d0af9a9cb4f71d Properly package texlive and split package into texlive & texlive-bin (#1203) * texlive: enable makeindex and put man files and headers in proper location. * texlive: upgrade to 2017 * texlive: split into texlive-bin and arch independent texlive-base. Download texmf-dist and other tarballs and package necessary files instead of using tlnet installer on device. * texlive-base: extract only a minimal set of files from texmf-dist, do complete uninstall on removal. Patch some files. The texmf-dist tar is quite large so use --checkpoint to indicate progress. * texlive: use gnupg2 instead of gnupg * texlive: fix texlive profile * texlive: added TL_BINDIR variable to simplify build scripts * texlive: replace tlmgr symlink with small wrapper. After `tlmgr update --self` has been run, the shebang of tlmgr.pl is none-working and there is a reference to /bin/sh in TLUtils.pm. This wrapper fixes this (if needed) before tlmgr is run. * texlive: update command-not-found with a few common texlive commands. * remove un-needed minimal.list * Format generation working. xelatex activated. Remove all texmf-dist files created by texlive-bin package. * texlive: fix installation and removal of texlive-{bin,base}. All essential fixes done. Only thing remaining to fix is figuring out how to deal with the transition texlive -> texlive-{bin,base}. * texlive: use Breaks instead of Conflicts * texlive: properly fix split into two packages [WIP] * delete old termux-install-tl.sh * texlive: Fix so that the upgrade from texlive 20170524-2 goes smoothly and works as it should (with Breaks and Replaces). Also major clean up of texlive/build.sh. * texlive: minor clean up of texlive/build.sh. Update patches to avoid (silent) complaints from patching. Add previously forgotten install-tl.list with list of files to take from install-tl-unx.tar.gz. * texlive: make texlive-bin-dev properly replace texlive-dev. Everything is done now, just need to wait for breaks and subpkg_replaces before opening a pull request. * texlive: skip format generation on install, rm old files in texlive-bin as well. Also decrease verbosity of installation * texlive: when deleting old files, leave texmf-dist alone * texlive: fix typo, correctly remove files from old texlive version --- diff --git a/packages/command-not-found/commands.h b/packages/command-not-found/commands.h index 4aafbe05..bf0acb86 100644 --- a/packages/command-not-found/commands.h +++ b/packages/command-not-found/commands.h @@ -1838,7 +1838,13 @@ char const* const commands[] = { " texi2pdf", " texindex", "texlive", -" termux-install-tl", +" bibtex", +" lualatex", +" makeindex", +" pdflatex", +" texliveonfly", +" tlmgr", +" xelatex", "tig", " tig", "timewarrior", diff --git a/packages/texlive-bin/build.sh b/packages/texlive-bin/build.sh new file mode 100644 index 00000000..b4e09a89 --- /dev/null +++ b/packages/texlive-bin/build.sh @@ -0,0 +1,102 @@ +TERMUX_PKG_HOMEPAGE=https://www.tug.org/texlive/ +TERMUX_PKG_DESCRIPTION="TeX Live is a distribution of the TeX typesetting system." +TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91" +_MAJOR_VERSION=20170524 +_MINOR_VERSION= +TERMUX_PKG_VERSION=${_MAJOR_VERSION}${_MINOR_VERSION} +TERMUX_PKG_SRCURL=ftp://tug.org/historic/systems/texlive/${TERMUX_PKG_VERSION:0:4}/texlive-${TERMUX_PKG_VERSION}-source.tar.xz +TERMUX_PKG_SHA256="0161695304e941334dc0b3b5dabcf8edf46c09b7bc33eea8229b5ead7ccfb2aa" +TERMUX_PKG_DEPENDS="freetype, libpng, libgd, libgmp, libmpfr, libicu, liblua, poppler, libgraphite, harfbuzz-icu, perl" +TERMUX_PKG_FOLDERNAME=texlive-${_MAJOR_VERSION}-source +TERMUX_PKG_BREAKS="texlive (<< 20170524-3)" +TERMUX_PKG_REPLACES="texlive (<< 20170524-3)" +TERMUX_PKG_NO_DEVELSPLIT=yes + +TL_ROOT=$TERMUX_PREFIX/opt/texlive/${TERMUX_PKG_VERSION:0:4} +TL_BINDIR=$TL_ROOT/bin/custom + +TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" +AR=ar \ +RANLIB=ranlib \ +BUILDAR=ar \ +BUILDRANLIB=ranlib \ +ac_cv_c_bigendian=no \ +--prefix=$TL_ROOT \ +--bindir=$TL_BINDIR \ +--datarootdir=$TL_ROOT \ +--datadir=$TERMUX_PREFIX/share \ +--mandir=$TERMUX_PREFIX/share/man \ +--docdir=$TERMUX_PREFIX/share/doc \ +--infodir=$TERMUX_PREFIX/share/info \ +--libdir=$TERMUX_PREFIX/lib \ +--includedir=$TERMUX_PREFIX/include \ +--build=$TERMUX_BUILD_TUPLE \ +--enable-ttfdump=no \ +--enable-makeindexk=yes \ +--enable-makejvf=no \ +--enable-mendexk=no \ +--enable-musixtnt=no \ +--enable-ps2pk=no \ +--enable-seetexk=no \ +--enable-gregorio=no \ +--disable-native-texlive-build \ +--disable-bibtexu \ +--disable-dvisvgm \ +--disable-dialog \ +--disable-psutils \ +--disable-multiplatform \ +--disable-t1utils \ +--enable-luatex \ +--disable-luajittex \ +--disable-mflua \ +--disable-mfluajit \ +--disable-xz \ +--disable-pmx \ +--without-texinfo \ +--without-xdvipdfmx \ +--without-texi2html \ +--with-system-cairo \ +--with-system-graphite2 \ +--with-system-harfbuzz \ +--with-system-gd \ +--with-system-gmp \ +--with-system-icu \ +--with-system-lua \ +--with-system-mpfr \ +--with-system-poppler \ +--with-system-zlib \ +--with-system-xpdf \ +--with-system-lua \ +--without-x \ +--with-banner-add=/Termux" + +TERMUX_PKG_RM_AFTER_INSTALL="opt/texlive/${TERMUX_PKG_VERSION:0:4}/texmf-dist" + +termux_step_pre_configure() { + # When building against libicu 59.1 or later we need c++11: + CXXFLAGS+=" -std=c++11" +} + +termux_step_post_make_install () { + mkdir -p $TERMUX_PREFIX/etc/profile.d/ + echo "export PATH=\$PATH:$TL_BINDIR" > $TERMUX_PREFIX/etc/profile.d/texlive.sh + echo "export TMPDIR=$TERMUX_PREFIX/tmp/" >> $TERMUX_PREFIX/etc/profile.d/texlive.sh + chmod 0744 $TERMUX_PREFIX/etc/profile.d/texlive.sh + mv $TL_BINDIR/tlmgr $TL_BINDIR/tlmgr.ln + echo "#!$TERMUX_PREFIX/bin/sh" > $TL_BINDIR/tlmgr + echo "termux-fix-shebang $TL_ROOT/texmf-dist/scripts/texlive/tlmgr.pl" >> $TL_BINDIR/tlmgr + echo "sed -E -i '"'s@`/bin/sh@`'$TERMUX_PREFIX"/bin/sh@g' ${TL_ROOT}/tlpkg/TeXLive/TLUtils.pm" >> $TL_BINDIR/tlmgr + echo 'tlmgr.ln "$@"' >> $TL_BINDIR/tlmgr + chmod 0744 $TL_BINDIR/tlmgr +} + +termux_step_create_debscripts () { + # Clean texlive's folder if needed (run on fresh install) + echo "if [ ! -f $TERMUX_PREFIX/opt/texlive/2016/install-tl -a ! -f $TERMUX_PREFIX/opt/texlive/2017/install-tl ]; then exit 0; else echo 'Removing residual files from old version of TeX Live for Termux'; fi" > preinst + echo "rm -rf $TERMUX_PREFIX/etc/profile.d/texlive.sh" >> preinst + echo "rm -rf $TERMUX_PREFIX/opt/texlive/2016" + # Let's not delete the previous texmf-dist so that people who have installed a full distribution won't need to download everything again + echo "rm -rf $TERMUX_PREFIX/opt/texlive/2017/!(texmf-dist)" >> preinst + echo "exit 0" >> preinst + chmod 0755 preinst +} diff --git a/packages/texlive/c++11.patch b/packages/texlive-bin/c++11.patch similarity index 100% rename from packages/texlive/c++11.patch rename to packages/texlive-bin/c++11.patch diff --git a/packages/texlive/dvipdfm-x_fix_getpass.patch b/packages/texlive-bin/dvipdfm-x_fix_getpass.patch similarity index 100% rename from packages/texlive/dvipdfm-x_fix_getpass.patch rename to packages/texlive-bin/dvipdfm-x_fix_getpass.patch diff --git a/packages/texlive-bin/texlive-bin-dev.subpackage.sh b/packages/texlive-bin/texlive-bin-dev.subpackage.sh new file mode 100644 index 00000000..cc9cb0de --- /dev/null +++ b/packages/texlive-bin/texlive-bin-dev.subpackage.sh @@ -0,0 +1,5 @@ +TERMUX_SUBPKG_INCLUDE="include lib/pkgconfig" +TERMUX_SUBPKG_DESCRIPTION="Development files for texlive" +TERMUX_SUBPKG_DEPENDS="texlive-bin" +TERMUX_SUBPKG_REPLACES="texlive-dev" +TERMUX_SUBPKG_CONFLICTS="texlive-dev" diff --git a/packages/texlive/zziplib_disable_have_dirent.patch b/packages/texlive-bin/zziplib_disable_have_dirent.patch similarity index 100% rename from packages/texlive/zziplib_disable_have_dirent.patch rename to packages/texlive-bin/zziplib_disable_have_dirent.patch diff --git a/packages/texlive/TLConfig.pm.patch b/packages/texlive/TLConfig.pm.patch new file mode 100644 index 00000000..06a1ebbd --- /dev/null +++ b/packages/texlive/TLConfig.pm.patch @@ -0,0 +1,19 @@ +--- src/texlive-20170524-extra/tlpkg/TeXLive/TLConfig.pm 2016-04-21 19:08:52.000000000 +0000 ++++ ../TLConfig.pm 2017-05-30 13:18:48.030712610 +0000 +@@ -165,13 +165,13 @@ + [ "b", 1, "postcode", + "Run postinst code blobs" ], + "sys_bin" => +- [ "p", "/usr/local/bin", "sys_bin", ++ [ "p", "@TERMUX_PREFIX@/bin", "sys_bin", + "Destination for symlinks for binaries" ], + "sys_info" => +- [ "p", "/usr/local/share/info", "sys_info", ++ [ "p", "@TERMUX_PREFIX@/share/info", "sys_info", + "Destination for symlinks for info docs" ], + "sys_man" => +- [ "p", "/usr/local/share/man", "sys_man", ++ [ "p", "@TERMUX_PREFIX@/share/man", "sys_man", + "Destination for symlinks for man pages" ], + "w32_multi_user" => + [ "b", 1, "multiuser", diff --git a/packages/texlive/TLUtils.pm.patch b/packages/texlive/TLUtils.pm.patch new file mode 100644 index 00000000..baf5d78a --- /dev/null +++ b/packages/texlive/TLUtils.pm.patch @@ -0,0 +1,11 @@ +--- src/texlive-20170524-extra/tlpkg/TeXLive/TLUtils.pm 2016-05-16 00:33:33.000000000 +0000 ++++ ../TLUtils.pm 2017-05-30 14:09:38.505466432 +0000 +@@ -228,7 +228,7 @@ + # We cannot rely on #! in config.guess but have to call /bin/sh + # explicitly because sometimes the 'noexec' flag is set in + # /etc/fstab for ISO9660 file systems. +- chomp (my $guessed_platform = `/bin/sh '$config_guess'`); ++ chomp (my $guessed_platform = `@TERMUX_PREFIX@/bin/sh '$config_guess'`); + + # For example, if the disc or reader has hardware problems. + die "$0: could not run $config_guess, cannot proceed, sorry" diff --git a/packages/texlive/build.sh b/packages/texlive/build.sh index 19cacb91..d556991c 100644 --- a/packages/texlive/build.sh +++ b/packages/texlive/build.sh @@ -4,103 +4,94 @@ TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91" _MAJOR_VERSION=20170524 _MINOR_VERSION= TERMUX_PKG_VERSION=${_MAJOR_VERSION}${_MINOR_VERSION} -TERMUX_PKG_REVISION=2 -TERMUX_PKG_SRCURL=ftp://tug.org/historic/systems/texlive/${TERMUX_PKG_VERSION:0:4}/texlive-${TERMUX_PKG_VERSION}-source.tar.xz -TERMUX_PKG_SHA256="0161695304e941334dc0b3b5dabcf8edf46c09b7bc33eea8229b5ead7ccfb2aa" -TERMUX_PKG_DEPENDS="freetype, libpng, libgd, libgmp, libmpfr, libicu, liblua, poppler, libgraphite, harfbuzz-icu, perl, xz-utils, wget, gnupg" -TERMUX_PKG_FOLDERNAME=texlive-${_MAJOR_VERSION}-source +TERMUX_PKG_REVISION=3 +TERMUX_PKG_SRCURL=("ftp://ftp.tug.org/texlive/historic/${TERMUX_PKG_VERSION:0:4}/"\ +{"texlive-$_MAJOR_VERSION-texmf.tar.xz",\ +"texlive-$_MAJOR_VERSION-extra.tar.xz",\ +"install-tl-unx.tar.gz"}) +TERMUX_PKG_SHA256=("3f63708b77f8615ec6f2f7c93259c5f584d1b89dd335a28f2362aef9e6f0c9ec" +"afe49758c26fb51c2fae2e958d3f0c447b5cc22342ba4a4278119d39f5176d7f" +"d4e07ed15dace1ea7fabe6d225ca45ba51f1cb7783e17850bc9fe3b890239d6d") +TERMUX_PKG_DEPENDS="wget, perl, xz-utils, gnupg2, texlive-bin (>= 20170524)" +TERMUX_PKG_FOLDERNAME=("texlive-$_MAJOR_VERSION-texmf" +"texlive-$_MAJOR_VERSION-extra" +"install-tl-$_MAJOR_VERSION") +TL_FILE_LISTS=("texlive-texmf.list" +"texlive-extra.list" +"install-tl.list") +TERMUX_PKG_PLATFORM_INDEPENDENT=yes TL_ROOT=$TERMUX_PREFIX/opt/texlive/${TERMUX_PKG_VERSION:0:4} +TL_BINDIR=$TL_ROOT/bin/custom -TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" -AR=ar \ -RANLIB=ranlib \ -BUILDAR=ar \ -BUILDRANLIB=ranlib \ -ac_cv_c_bigendian=no \ ---prefix=$TL_ROOT \ ---bindir=$TL_ROOT/bin/pkg \ ---datarootdir=$TL_ROOT \ ---datadir=$TERMUX_PREFIX/share \ ---mandir=$TERMUX_PREFIX/share/man \ ---docdir=$TERMUX_PREFIX/share/doc \ ---infodir=$TERMUX_PREFIX/share/info \ ---libdir=$TERMUX_PREFIX/lib \ ---includedir=$TERMUX_PREFIX/include \ ---build=$TERMUX_BUILD_TUPLE \ ---enable-ttfdump=no \ ---enable-makeindexk=yes \ ---enable-makejvf=no \ ---enable-mendexk=no \ ---enable-musixtnt=no \ ---enable-ps2pk=no \ ---enable-seetexk=no \ ---enable-gregorio=no \ ---disable-native-texlive-build \ ---disable-bibtexu \ ---disable-dvisvgm \ ---disable-dialog \ ---disable-psutils \ ---disable-multiplatform \ ---disable-t1utils \ ---enable-luatex \ ---disable-luajittex \ ---disable-mflua \ ---disable-mfluajit \ ---disable-xz \ ---disable-pmx \ ---without-texinfo \ ---without-xdvipdfmx \ ---without-texi2html \ ---with-system-cairo \ ---with-system-graphite2 \ ---with-system-harfbuzz \ ---with-system-gd \ ---with-system-gmp \ ---with-system-icu \ ---with-system-lua \ ---with-system-mpfr \ ---with-system-poppler \ ---with-system-zlib \ ---with-system-xpdf \ ---with-system-lua \ ---without-x \ ---with-banner-add=/Termux" - -termux_step_pre_configure() { - # When building against libicu 59.1 or later we need c++11: - CXXFLAGS+=" -std=c++11" +termux_step_extract_package() { + mkdir -p "$TERMUX_PKG_SRCDIR" + + cd "$TERMUX_PKG_TMPDIR" + for index in $(seq 0 2); do + local filename + filename=$(basename "${TERMUX_PKG_SRCURL[$index]}") + local file="$TERMUX_PKG_CACHEDIR/$filename" + termux_download "${TERMUX_PKG_SRCURL[$index]}" "$file" "${TERMUX_PKG_SHA256[$index]}" + + folder=${TERMUX_PKG_FOLDERNAME[$index]} + + rm -Rf $folder + echo "Extracting files listed in ${TL_FILE_LISTS[$index]} from $folder" + tar xf "$file" $(paste -d'\0' <(for i in $(seq 1 $( wc -l < $TERMUX_PKG_BUILDER_DIR/${TL_FILE_LISTS[$index]} )); do echo ${TERMUX_PKG_FOLDERNAME[$index]}/; done ) $TERMUX_PKG_BUILDER_DIR/${TL_FILE_LISTS[$index]} ) + done + cp -r ${TERMUX_PKG_FOLDERNAME[@]} "$TERMUX_PKG_SRCDIR" } -termux_step_post_make_install () { - cp $TERMUX_PKG_BUILDER_DIR/termux-install-tl.sh $TERMUX_PREFIX/bin/termux-install-tl - mkdir -p $TERMUX_PREFIX/etc/profile.d/ - echo "export PATH=\$PATH:$TERMUX_PREFIX/opt/texlive/${TERMUX_PKG_VERSION:0:4}/bin/custom/" >> $TERMUX_PREFIX/etc/profile.d/texlive.sh - echo "export TMPDIR=$TERMUX_PREFIX/tmp/" >> $TERMUX_PREFIX/etc/profile.d/texlive.sh - chmod 0744 $TERMUX_PREFIX/etc/profile.d/texlive.sh +termux_step_make() { + for index in $( seq 0 2 ); do + cp -r $TERMUX_PKG_SRCDIR/${TERMUX_PKG_FOLDERNAME[$index]}/* $TL_ROOT/ + done + + mkdir -p $TL_ROOT/{tlpkg/{backups,tlpobj},texmf-var/web2c} + cp $TERMUX_PKG_BUILDER_DIR/texlive.tlpdb $TL_ROOT/tlpkg/ + + perl -I$TL_ROOT/tlpkg/ $TL_ROOT/texmf-dist/scripts/texlive/mktexlsr.pl $TL_ROOT/texmf-dist } termux_step_create_debscripts () { - echo 'echo "========================================================"' > postinst - echo 'echo "retrieving texlive..."' >> postinst - echo 'echo "you can start this manually by calling termux-install-tl"' >> postinst - echo 'echo "========================================================"' >> postinst - echo "termux-install-tl" >> postinst - echo "exit 0" >> postinst - chmod 0755 postinst - - # Clean texlive's folder if needed. - echo "if [ ! -f $TERMUX_PREFIX/opt/texlive/2016/install-tl ]; then exit 0; else echo 'Removing residual files from old version of TeX Live for Termux'; fi" > preinst - echo "rm -rf $TERMUX_PREFIX/{etc/profile.d/texlive.sh,opt/texlive}" >> preinst + # Clean texlive's folder if needed (run on upgrade) + echo "if [ ! -f $TERMUX_PREFIX/opt/texlive/2016/install-tl -a ! -f $TERMUX_PREFIX/opt/texlive/2017/install-tl ]; then exit 0; else echo 'Removing residual files from old version of TeX Live for Termux'; fi" > preinst + echo "rm -rf $TERMUX_PREFIX/etc/profile.d/texlive.sh" >> preinst + echo "rm -rf $TERMUX_PREFIX/opt/texlive/2016" >> preinst + # Let's not delete the previous texmf-dist so that people who have installed a full distribution won't need to download everything again + echo "rm -rf $TERMUX_PREFIX/opt/texlive/2017/!(texmf-dist)" >> preinst echo "exit 0" >> preinst chmod 0755 preinst - # Remove all files installed/downloaded through termux-install-tl + echo "mkdir -p $TL_ROOT/{tlpkg/{backups,tlpobj},texmf-var/{web2c,tex/generic/config}}" > postinst + echo "export PATH=\$PATH:$TL_BINDIR" >> postinst + echo "echo Updating tlmgr" >> postinst + echo "tlmgr update --self" >> postinst + echo "echo Generating language files and setting up symlinks" >> postinst + echo "tlmgr -q generate language" >> postinst + echo "mktexlsr $TL_ROOT/texmf-var" >> postinst + echo "texlinks" >> postinst + echo "echo ''" >> postinst + echo "echo Welcome to TeX Live!" >> postinst + echo "echo ''" >> postinst + echo "echo 'TeX Live is a joint project of the TeX user groups around the world;'" >> postinst + echo "echo 'please consider supporting it by joining the group best for you.'" >> postinst + echo "echo 'The list of groups is available on the web at http://tug.org/usergroups.html.'" >> postinst + echo "echo ''" >> postinst + echo "echo 'Please run \"source $PREFIX/etc/profile.d/texlive.sh\" to add texlive'\''s binaries to your current shell'\''s PATH.'" >> postinst + echo "exit 0" >> postinst + chmod 0755 postinst + + # Remove all files installed through tlmgr on removal echo 'if [ $1 != "remove" ]; then exit 0; fi' > prerm + #echo "tlmgr remove --dry-run " echo "echo Running texlinks --unlink" >> prerm echo "texlinks --unlink" >> prerm - echo "echo Removing bin/custom and texmf-dist" >> prerm - echo "rm -rf $TL_ROOT/{bin/custom,texmf-dist}" >> prerm + echo "echo Removing texmf-dist" >> prerm + echo "rm -rf $TL_ROOT/texmf-dist" >> prerm + echo "echo Removing texmf-var and tlpkg" >> prerm + echo "rm -rf $TL_ROOT/{texmf-var,tlpkg/{texlive.tlpdb.*,tlpobj,backups}}" >> prerm echo "exit 0" >> prerm chmod 0755 prerm } diff --git a/packages/texlive/fmtutil.cnf.patch b/packages/texlive/fmtutil.cnf.patch new file mode 100644 index 00000000..f686d2fc --- /dev/null +++ b/packages/texlive/fmtutil.cnf.patch @@ -0,0 +1,12 @@ +We've disabled luajittex when building the binaries, so lets prevent texlive from trying to generate formats for it. +--- src/texlive-20170524-texmf/texmf-dist/web2c/fmtutil.cnf 2016-05-15 01:17:09.000000000 +0000 ++++ ../fmtutil.cnf 2017-05-31 05:20:32.516130878 +0000 +@@ -82,7 +82,7 @@ + # from luatex: + luatex luatex language.def,language.dat.lua luatex.ini + dviluatex luatex language.def,language.dat.lua dviluatex.ini +-luajittex luajittex language.def,language.dat.lua luatex.ini ++#! luajittex luajittex language.def,language.dat.lua luatex.ini + # + # from metafont: + mf mf-nowin - -translate-file=cp227.tcx mf.ini diff --git a/packages/texlive/install-tl.list b/packages/texlive/install-tl.list new file mode 100644 index 00000000..addded33 --- /dev/null +++ b/packages/texlive/install-tl.list @@ -0,0 +1,5 @@ +tlpkg/installer/config.guess +tlpkg/gpg/pubring.gpg +tlpkg/gpg/random_seed +tlpkg/gpg/secring.gpg +tlpkg/gpg/trustdb.gpg diff --git a/packages/texlive/termux-install-tl.sh b/packages/texlive/termux-install-tl.sh deleted file mode 100755 index 3fb2406e..00000000 --- a/packages/texlive/termux-install-tl.sh +++ /dev/null @@ -1,65 +0,0 @@ - -TL_VERSION=2017 -TL_ROOT=$PREFIX/opt/texlive - -export TMPDIR=$PREFIX/tmp/ -mkdir -p $TMPDIR/termux-tl-installer -cd $TMPDIR/termux-tl-installer - -wget ftp://ftp.tug.org/texlive/historic/$TL_VERSION/install-tl-unx.tar.gz -O install-tl-unx.tar.gz -tar xzfv install-tl-unx.tar.gz > flist - -cd $(head -1 flist) - -#patch install-tl -sed -E -i "s@\`/bin/sh@\`$PREFIX/bin/sh@g" tlpkg/TeXLive/TLUtils.pm - -cat > texlive_inst.profile << XXHEREXX -selected_scheme scheme-basic -TEXDIR $TL_ROOT/$TL_VERSION -TEXMFCONFIG ~/.texlive$TL_VERSION/texmf-config -TEXMFHOME ~/texmf -TEXMFLOCAL $TL_ROOT/texmf-local -TEXMFSYSCONFIG $TL_ROOT/$TL_VERSION/texmf-config -TEXMFSYSVAR $TL_ROOT/$TL_VERSION/texmf-var -TEXMFVAR ~/.texlive$TL_VERSION/texmf-var -collection-basic 1 -collection-latex 1 -collection-luatex 1 -instopt_adjustpath 0 -instopt_adjustrepo 1 -instopt_letter 0 -instopt_portable 0 -instopt_write18_restricted 1 -tlpdbopt_autobackup 1 -tlpdbopt_backupdir tlpkg/backups -tlpdbopt_create_formats 1 -tlpdbopt_desktop_integration 0 -tlpdbopt_file_assocs 0 -tlpdbopt_generate_updmap 0 -tlpdbopt_install_docfiles 0 -tlpdbopt_install_srcfiles 0 -tlpdbopt_post_code 1 -tlpdbopt_sys_bin $PREFIX/bin -tlpdbopt_sys_info $PREFIX/share/info -tlpdbopt_sys_man $PREFIX/share/man -tlpdbopt_w32_multi_user 0 -XXHEREXX - -#start installer with a profile and premade binaries -perl ./install-tl --custom-bin=$TL_ROOT/${TL_VERSION}/bin/pkg --profile texlive_inst.profile - -#fix tlpkg -sed -E -i "s@\`/bin/sh@\`$PREFIX/bin/sh@g" ${TL_ROOT}/${TL_VERSION}/tlpkg/TeXLive/TLUtils.pm - -#fix shebangs -sed -i -E "1 s@^#\!(.*)/[sx]?bin/(.*)@#\!$PREFIX/bin/\2@" ${TL_ROOT}/${TL_VERSION}/texmf-dist/web2c/* -sed -i -E "1 s@^#\!(.*)/[sx]?bin/(.*)@#\!$PREFIX/bin/\2@" ${TL_ROOT}/${TL_VERSION}/bin/custom/* - -#source the environment -. $PREFIX/etc/profile.d/texlive.sh - -#setup links -texlinks - -rm -rf $TMPDIR/termux-tl-installer diff --git a/packages/texlive/texlive-extra.list b/packages/texlive/texlive-extra.list new file mode 100644 index 00000000..e83100dd --- /dev/null +++ b/packages/texlive/texlive-extra.list @@ -0,0 +1,36 @@ +tlpkg/tlpostcode/dvipdfmx.pl +tlpkg/translations/cs.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 +LICENSE.CTAN +LICENSE.TL +release-texlive.txt +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 diff --git a/packages/texlive/texlive-texmf.list b/packages/texlive/texlive-texmf.list new file mode 100644 index 00000000..05b80d16 --- /dev/null +++ b/packages/texlive/texlive-texmf.list @@ -0,0 +1,2398 @@ +texmf-dist/fonts/tfm/public/ae/aeb10.tfm +texmf-dist/fonts/tfm/public/ae/aebx10.tfm +texmf-dist/fonts/tfm/public/ae/aebx12.tfm +texmf-dist/fonts/tfm/public/ae/aebx5.tfm +texmf-dist/fonts/tfm/public/ae/aebx6.tfm +texmf-dist/fonts/tfm/public/ae/aebx7.tfm +texmf-dist/fonts/tfm/public/ae/aebx8.tfm +texmf-dist/fonts/tfm/public/ae/aebx9.tfm +texmf-dist/fonts/tfm/public/ae/aebxsl10.tfm +texmf-dist/fonts/tfm/public/ae/aebxti10.tfm +texmf-dist/fonts/tfm/public/ae/aecsc10.tfm +texmf-dist/fonts/tfm/public/ae/aeitt10.tfm +texmf-dist/fonts/tfm/public/ae/aer10.tfm +texmf-dist/fonts/tfm/public/ae/aer12.tfm +texmf-dist/fonts/tfm/public/ae/aer17.tfm +texmf-dist/fonts/tfm/public/ae/aer5.tfm +texmf-dist/fonts/tfm/public/ae/aer6.tfm +texmf-dist/fonts/tfm/public/ae/aer7.tfm +texmf-dist/fonts/tfm/public/ae/aer8.tfm +texmf-dist/fonts/tfm/public/ae/aer9.tfm +texmf-dist/fonts/tfm/public/ae/aesl10.tfm +texmf-dist/fonts/tfm/public/ae/aesl12.tfm +texmf-dist/fonts/tfm/public/ae/aesl8.tfm +texmf-dist/fonts/tfm/public/ae/aesl9.tfm +texmf-dist/fonts/tfm/public/ae/aesltt10.tfm +texmf-dist/fonts/tfm/public/ae/aess10.tfm +texmf-dist/fonts/tfm/public/ae/aess12.tfm +texmf-dist/fonts/tfm/public/ae/aess17.tfm +texmf-dist/fonts/tfm/public/ae/aess8.tfm +texmf-dist/fonts/tfm/public/ae/aess9.tfm +texmf-dist/fonts/tfm/public/ae/aessbx10.tfm +texmf-dist/fonts/tfm/public/ae/aessdc10.tfm +texmf-dist/fonts/tfm/public/ae/aessi10.tfm +texmf-dist/fonts/tfm/public/ae/aessi12.tfm +texmf-dist/fonts/tfm/public/ae/aessi17.tfm +texmf-dist/fonts/tfm/public/ae/aessi8.tfm +texmf-dist/fonts/tfm/public/ae/aessi9.tfm +texmf-dist/fonts/tfm/public/ae/aetcsc10.tfm +texmf-dist/fonts/tfm/public/ae/aeti10.tfm +texmf-dist/fonts/tfm/public/ae/aeti12.tfm +texmf-dist/fonts/tfm/public/ae/aeti7.tfm +texmf-dist/fonts/tfm/public/ae/aeti8.tfm +texmf-dist/fonts/tfm/public/ae/aeti9.tfm +texmf-dist/fonts/tfm/public/ae/aett10.tfm +texmf-dist/fonts/tfm/public/ae/aett12.tfm +texmf-dist/fonts/tfm/public/ae/aett8.tfm +texmf-dist/fonts/tfm/public/ae/aett9.tfm +texmf-dist/fonts/tfm/public/ae/laess8.tfm +texmf-dist/fonts/tfm/public/ae/laessb8.tfm +texmf-dist/fonts/tfm/public/ae/laessi8.tfm +texmf-dist/fonts/vf/public/ae/aeb10.vf +texmf-dist/fonts/vf/public/ae/aebx10.vf +texmf-dist/fonts/vf/public/ae/aebx12.vf +texmf-dist/fonts/vf/public/ae/aebx5.vf +texmf-dist/fonts/vf/public/ae/aebx6.vf +texmf-dist/fonts/vf/public/ae/aebx7.vf +texmf-dist/fonts/vf/public/ae/aebx8.vf +texmf-dist/fonts/vf/public/ae/aebx9.vf +texmf-dist/fonts/vf/public/ae/aebxsl10.vf +texmf-dist/fonts/vf/public/ae/aebxti10.vf +texmf-dist/fonts/vf/public/ae/aecsc10.vf +texmf-dist/fonts/vf/public/ae/aeitt10.vf +texmf-dist/fonts/vf/public/ae/aer10.vf +texmf-dist/fonts/vf/public/ae/aer12.vf +texmf-dist/fonts/vf/public/ae/aer17.vf +texmf-dist/fonts/vf/public/ae/aer5.vf +texmf-dist/fonts/vf/public/ae/aer6.vf +texmf-dist/fonts/vf/public/ae/aer7.vf +texmf-dist/fonts/vf/public/ae/aer8.vf +texmf-dist/fonts/vf/public/ae/aer9.vf +texmf-dist/fonts/vf/public/ae/aesl10.vf +texmf-dist/fonts/vf/public/ae/aesl12.vf +texmf-dist/fonts/vf/public/ae/aesl8.vf +texmf-dist/fonts/vf/public/ae/aesl9.vf +texmf-dist/fonts/vf/public/ae/aesltt10.vf +texmf-dist/fonts/vf/public/ae/aess10.vf +texmf-dist/fonts/vf/public/ae/aess12.vf +texmf-dist/fonts/vf/public/ae/aess17.vf +texmf-dist/fonts/vf/public/ae/aess8.vf +texmf-dist/fonts/vf/public/ae/aess9.vf +texmf-dist/fonts/vf/public/ae/aessbx10.vf +texmf-dist/fonts/vf/public/ae/aessdc10.vf +texmf-dist/fonts/vf/public/ae/aessi10.vf +texmf-dist/fonts/vf/public/ae/aessi12.vf +texmf-dist/fonts/vf/public/ae/aessi17.vf +texmf-dist/fonts/vf/public/ae/aessi8.vf +texmf-dist/fonts/vf/public/ae/aessi9.vf +texmf-dist/fonts/vf/public/ae/aetcsc10.vf +texmf-dist/fonts/vf/public/ae/aeti10.vf +texmf-dist/fonts/vf/public/ae/aeti12.vf +texmf-dist/fonts/vf/public/ae/aeti7.vf +texmf-dist/fonts/vf/public/ae/aeti8.vf +texmf-dist/fonts/vf/public/ae/aeti9.vf +texmf-dist/fonts/vf/public/ae/aett10.vf +texmf-dist/fonts/vf/public/ae/aett12.vf +texmf-dist/fonts/vf/public/ae/aett8.vf +texmf-dist/fonts/vf/public/ae/aett9.vf +texmf-dist/fonts/vf/public/ae/laess8.vf +texmf-dist/fonts/vf/public/ae/laessb8.vf +texmf-dist/fonts/vf/public/ae/laessi8.vf +texmf-dist/tex/latex/ae/ae.sty +texmf-dist/tex/latex/ae/aecompl.sty +texmf-dist/tex/latex/ae/omlaer.fd +texmf-dist/tex/latex/ae/omsaer.fd +texmf-dist/tex/latex/ae/ot1aer.fd +texmf-dist/tex/latex/ae/ot1aess.fd +texmf-dist/tex/latex/ae/ot1aett.fd +texmf-dist/tex/latex/ae/ot1laess.fd +texmf-dist/tex/latex/ae/ot1laett.fd +texmf-dist/tex/latex/ae/t1aer.fd +texmf-dist/tex/latex/ae/t1aess.fd +texmf-dist/tex/latex/ae/t1aett.fd +texmf-dist/tex/latex/ae/t1laess.fd +texmf-dist/tex/latex/ae/t1laett.fd +texmf-dist/bibtex/bst/amscls/amsalpha.bst +texmf-dist/bibtex/bst/amscls/amsplain.bst +texmf-dist/tex/latex/amscls/amsart.cls +texmf-dist/tex/latex/amscls/amsbook.cls +texmf-dist/tex/latex/amscls/amsbooka.sty +texmf-dist/tex/latex/amscls/amsdtx.cls +texmf-dist/tex/latex/amscls/amsldoc.cls +texmf-dist/tex/latex/amscls/amsmidx.sty +texmf-dist/tex/latex/amscls/amsproc.cls +texmf-dist/tex/latex/amscls/amsthm.sty +texmf-dist/tex/latex/amscls/upref.sty +texmf-dist/fonts/afm/public/amsfonts/cm/cmb10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmbsy10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmbx10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmbx12.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmbx5.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmbx6.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmbx7.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmbx8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmbx9.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmbxsl10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmbxti10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmcsc10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmdunh10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmex10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmff10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmfi10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmfib8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cminch.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmitt10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmmi10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmmi12.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmmi5.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmmi6.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmmi7.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmmi8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmmi9.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmmib10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmr10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmr12.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmr17.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmr5.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmr6.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmr7.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmr8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmr9.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsl10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsl12.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsl8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsl9.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsltt10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmss10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmss12.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmss17.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmss8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmss9.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmssbx10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmssdc10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmssi10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmssi12.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmssi17.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmssi8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmssi9.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmssq8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmssqi8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsy10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsy5.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsy6.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsy7.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsy8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmsy9.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmtcsc10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmtex10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmtex8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmtex9.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmti10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmti12.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmti7.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmti8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmti9.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmtt10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmtt12.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmtt8.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmtt9.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmu10.afm +texmf-dist/fonts/afm/public/amsfonts/cm/cmvtt10.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmbsy5.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmbsy6.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmbsy7.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmbsy8.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmbsy9.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmcsc8.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmcsc9.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmex7.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmex8.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmex9.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmmib5.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmmib6.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmmib7.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmmib8.afm +texmf-dist/fonts/afm/public/amsfonts/cmextra/cmmib9.afm +texmf-dist/fonts/afm/public/amsfonts/cyrillic/wncyb10.afm +texmf-dist/fonts/afm/public/amsfonts/cyrillic/wncyi10.afm +texmf-dist/fonts/afm/public/amsfonts/cyrillic/wncyr10.afm +texmf-dist/fonts/afm/public/amsfonts/cyrillic/wncysc10.afm +texmf-dist/fonts/afm/public/amsfonts/cyrillic/wncyss10.afm +texmf-dist/fonts/afm/public/amsfonts/euler/euex10.afm +texmf-dist/fonts/afm/public/amsfonts/euler/euex7.afm +texmf-dist/fonts/afm/public/amsfonts/euler/euex8.afm +texmf-dist/fonts/afm/public/amsfonts/euler/euex9.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eufb10.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eufb5.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eufb7.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eufm10.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eufm5.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eufm7.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eurb10.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eurb5.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eurb7.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eurm10.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eurm5.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eurm7.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eusb10.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eusb5.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eusb7.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eusm10.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eusm5.afm +texmf-dist/fonts/afm/public/amsfonts/euler/eusm7.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy10.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy5.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy6.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy7.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy8.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy9.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lasyb10.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lcircle1.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lcirclew.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lcmss8.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lcmssb8.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/lcmssi8.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/line10.afm +texmf-dist/fonts/afm/public/amsfonts/latxfont/linew10.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msam10.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msam5.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msam6.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msam7.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msam8.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msam9.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msbm10.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msbm5.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msbm6.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msbm7.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msbm8.afm +texmf-dist/fonts/afm/public/amsfonts/symbols/msbm9.afm +texmf-dist/fonts/map/dvips/amsfonts/cm.map +texmf-dist/fonts/map/dvips/amsfonts/cmextra.map +texmf-dist/fonts/map/dvips/amsfonts/cyrillic.map +texmf-dist/fonts/map/dvips/amsfonts/euler.map +texmf-dist/fonts/map/dvips/amsfonts/latxfont.map +texmf-dist/fonts/map/dvips/amsfonts/symbols.map +texmf-dist/fonts/source/public/amsfonts/cmextra/cmbsy5.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmbsy6.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmbsy7.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmbsy8.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmbsy9.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmcsc8.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmcsc9.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmex7.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmex8.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmex9.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmmib5.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmmib6.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmmib7.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmmib8.mf +texmf-dist/fonts/source/public/amsfonts/cmextra/cmmib9.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrcsc.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrfont.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrilu.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrital.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrmax.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrpunc.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrspl.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrspu.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrti.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/serb.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/serbspu.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb10.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb5.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb6.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb7.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb8.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb9.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi10.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi5.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi6.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi7.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi8.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi9.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr10.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr5.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr6.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr7.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr8.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr9.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncysc10.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyss10.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyss8.mf +texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyss9.mf +texmf-dist/fonts/source/public/amsfonts/dummy/dummy.mf +texmf-dist/fonts/source/public/amsfonts/symbols/amsya.mf +texmf-dist/fonts/source/public/amsfonts/symbols/amsyb.mf +texmf-dist/fonts/source/public/amsfonts/symbols/asymbols.mf +texmf-dist/fonts/source/public/amsfonts/symbols/bsymbols.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msam10.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msam5.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msam6.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msam7.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msam8.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msam9.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msbm10.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msbm5.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msbm6.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msbm7.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msbm8.mf +texmf-dist/fonts/source/public/amsfonts/symbols/msbm9.mf +texmf-dist/fonts/source/public/amsfonts/symbols/xbbase.mf +texmf-dist/fonts/source/public/amsfonts/symbols/xbbold.mf +texmf-dist/fonts/source/public/amsfonts/symbols/xbcaps.mf +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy5.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy6.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy7.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy8.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy9.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmcsc8.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmcsc9.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex8.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib5.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib6.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib7.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib8.tfm +texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib9.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb10.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb5.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb6.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb7.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb8.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb9.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi10.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi5.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi6.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi7.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi8.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi9.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr10.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr5.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr6.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr7.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr8.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr9.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncysc10.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyss10.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyss8.tfm +texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyss9.tfm +texmf-dist/fonts/tfm/public/amsfonts/dummy/dummy.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/euex10.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/euex7.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/euex8.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/euex9.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufb10.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufb5.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufb6.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufb7.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufb8.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufb9.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufm10.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufm5.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufm6.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufm7.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufm8.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eufm9.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurb10.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurb5.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurb6.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurb7.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurb8.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurb9.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurm10.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurm5.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurm6.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurm7.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurm8.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eurm9.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusb10.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusb5.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusb6.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusb7.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusb8.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusb9.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusm10.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusm5.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusm6.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusm7.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusm8.tfm +texmf-dist/fonts/tfm/public/amsfonts/euler/eusm9.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msam6.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msam8.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msam9.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm6.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm8.tfm +texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm9.tfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmb10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmb10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmbsy10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmbsy10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx5.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx5.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx6.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx6.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx7.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx7.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmbxsl10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmbxsl10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmbxti10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmbxti10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmcsc10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmcsc10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmdunh10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmdunh10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmff10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmff10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmfi10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmfi10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmfib8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmfib8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cminch.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cminch.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmitt10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmitt10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi12.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi12.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi5.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi5.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi9.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmmi9.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmmib10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmmib10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmr5.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmr5.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsl10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsl10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsl12.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsl12.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsl8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsl8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsl9.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsl9.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsltt10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsltt10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmss10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmss10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmss12.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmss12.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmss17.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmss17.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmss8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmss8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmss9.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmss9.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmssbx10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmssbx10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmssdc10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmssdc10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmssi10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmssi10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmssi12.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmssi12.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmssi17.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmssi17.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmssi8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmssi8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmssi9.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmssi9.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmssq8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmssq8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmssqi8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmssqi8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy5.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy5.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy6.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy6.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy9.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmsy9.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmtcsc10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmtcsc10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmtex10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmtex10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmtex8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmtex8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmtex9.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmtex9.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmti12.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmti12.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmti7.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmti7.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmti8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmti8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmti9.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmti9.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmtt12.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmtt12.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmtt8.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmtt8.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmtt9.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmtt9.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmu10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmu10.pfm +texmf-dist/fonts/type1/public/amsfonts/cm/cmvtt10.pfb +texmf-dist/fonts/type1/public/amsfonts/cm/cmvtt10.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy5.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy5.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy6.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy6.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy7.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy7.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy8.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy8.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy9.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy9.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmcsc8.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmcsc8.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmcsc9.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmcsc9.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex7.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex7.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex8.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex8.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex9.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex9.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib5.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib5.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib6.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib6.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib7.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib7.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib8.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib8.pfm +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib9.pfb +texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib9.pfm +texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyb10.pfb +texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyb10.pfm +texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyi10.pfb +texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyi10.pfm +texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyr10.pfb +texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyr10.pfm +texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncysc10.pfb +texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncysc10.pfm +texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyss10.pfb +texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyss10.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/euex10.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/euex10.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/euex7.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/euex7.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/euex8.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/euex8.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/euex9.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/euex9.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eufb10.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eufb10.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eufb5.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eufb5.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eufb7.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eufb7.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eufm10.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eufm10.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eufm5.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eufm5.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eufm7.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eufm7.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eurb10.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eurb10.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eurb5.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eurb5.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eurb7.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eurb7.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eurm10.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eurm10.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eurm5.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eurm5.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eurm7.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eurm7.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eusb10.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eusb10.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eusb5.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eusb5.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eusb7.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eusb7.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eusm10.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eusm10.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eusm5.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eusm5.pfm +texmf-dist/fonts/type1/public/amsfonts/euler/eusm7.pfb +texmf-dist/fonts/type1/public/amsfonts/euler/eusm7.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy10.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy10.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy5.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy5.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy6.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy6.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy7.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy7.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy8.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy8.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy9.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy9.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasyb10.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lasyb10.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lcircle1.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lcircle1.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lcirclew.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lcirclew.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmss8.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmss8.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmssb8.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmssb8.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmssi8.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmssi8.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/line10.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/line10.pfm +texmf-dist/fonts/type1/public/amsfonts/latxfont/linew10.pfb +texmf-dist/fonts/type1/public/amsfonts/latxfont/linew10.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msam10.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msam10.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msam5.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msam5.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msam6.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msam6.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msam7.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msam7.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msam8.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msam8.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msam9.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msam9.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm10.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm10.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm5.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm5.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm6.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm6.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm7.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm7.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm8.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm8.pfm +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm9.pfb +texmf-dist/fonts/type1/public/amsfonts/symbols/msbm9.pfm +texmf-dist/tex/latex/amsfonts/amsfonts.sty +texmf-dist/tex/latex/amsfonts/amssymb.sty +texmf-dist/tex/latex/amsfonts/cmmib57.sty +texmf-dist/tex/latex/amsfonts/eucal.sty +texmf-dist/tex/latex/amsfonts/eufrak.sty +texmf-dist/tex/latex/amsfonts/euscript.sty +texmf-dist/tex/latex/amsfonts/ueuex.fd +texmf-dist/tex/latex/amsfonts/ueuf.fd +texmf-dist/tex/latex/amsfonts/ueur.fd +texmf-dist/tex/latex/amsfonts/ueus.fd +texmf-dist/tex/latex/amsfonts/umsa.fd +texmf-dist/tex/latex/amsfonts/umsb.fd +texmf-dist/tex/plain/amsfonts/amssym.def +texmf-dist/tex/plain/amsfonts/amssym.tex +texmf-dist/tex/plain/amsfonts/cyracc.def +texmf-dist/tex/latex/amsmath/amsbsy.sty +texmf-dist/tex/latex/amsmath/amscd.sty +texmf-dist/tex/latex/amsmath/amsgen.sty +texmf-dist/tex/latex/amsmath/amsmath.sty +texmf-dist/tex/latex/amsmath/amsopn.sty +texmf-dist/tex/latex/amsmath/amstex.sty +texmf-dist/tex/latex/amsmath/amstext.sty +texmf-dist/tex/latex/amsmath/amsxtra.sty +texmf-dist/makeindex/babel/bbglo.ist +texmf-dist/makeindex/babel/bbind.ist +texmf-dist/tex/generic/babel/UKenglish.sty +texmf-dist/tex/generic/babel/USenglish.sty +texmf-dist/tex/generic/babel/afrikaans.sty +texmf-dist/tex/generic/babel/albanian.sty +texmf-dist/tex/generic/babel/american.sty +texmf-dist/tex/generic/babel/austrian.sty +texmf-dist/tex/generic/babel/babel.def +texmf-dist/tex/generic/babel/babel.sty +texmf-dist/tex/generic/babel/bahasa.sty +texmf-dist/tex/generic/babel/bahasam.sty +texmf-dist/tex/generic/babel/basque.sty +texmf-dist/tex/generic/babel/blplain.tex +texmf-dist/tex/generic/babel/bplain.tex +texmf-dist/tex/generic/babel/breton.sty +texmf-dist/tex/generic/babel/british.sty +texmf-dist/tex/generic/babel/bulgarian.sty +texmf-dist/tex/generic/babel/catalan.sty +texmf-dist/tex/generic/babel/croatian.sty +texmf-dist/tex/generic/babel/czech.sty +texmf-dist/tex/generic/babel/danish.sty +texmf-dist/tex/generic/babel/dutch.sty +texmf-dist/tex/generic/babel/english.sty +texmf-dist/tex/generic/babel/esperanto.sty +texmf-dist/tex/generic/babel/estonian.sty +texmf-dist/tex/generic/babel/finnish.sty +texmf-dist/tex/generic/babel/francais.sty +texmf-dist/tex/generic/babel/galician.sty +texmf-dist/tex/generic/babel/germanb.sty +texmf-dist/tex/generic/babel/greek.sty +texmf-dist/tex/generic/babel/hebrew.sty +texmf-dist/tex/generic/babel/hyphen.cfg +texmf-dist/tex/generic/babel/icelandic.sty +texmf-dist/tex/generic/babel/interlingua.sty +texmf-dist/tex/generic/babel/irish.sty +texmf-dist/tex/generic/babel/italian.sty +texmf-dist/tex/generic/babel/latin.sty +texmf-dist/tex/generic/babel/lsorbian.sty +texmf-dist/tex/generic/babel/luababel.def +texmf-dist/tex/generic/babel/magyar.sty +texmf-dist/tex/generic/babel/naustrian.sty +texmf-dist/tex/generic/babel/ngermanb.sty +texmf-dist/tex/generic/babel/nil.ldf +texmf-dist/tex/generic/babel/norsk.sty +texmf-dist/tex/generic/babel/plain.def +texmf-dist/tex/generic/babel/polish.sty +texmf-dist/tex/generic/babel/portuges.sty +texmf-dist/tex/generic/babel/romanian.sty +texmf-dist/tex/generic/babel/russianb.sty +texmf-dist/tex/generic/babel/samin.sty +texmf-dist/tex/generic/babel/scottish.sty +texmf-dist/tex/generic/babel/serbian.sty +texmf-dist/tex/generic/babel/slovak.sty +texmf-dist/tex/generic/babel/slovene.sty +texmf-dist/tex/generic/babel/spanish.sty +texmf-dist/tex/generic/babel/swedish.sty +texmf-dist/tex/generic/babel/switch.def +texmf-dist/tex/generic/babel/turkish.sty +texmf-dist/tex/generic/babel/ukraineb.sty +texmf-dist/tex/generic/babel/usorbian.sty +texmf-dist/tex/generic/babel/welsh.sty +texmf-dist/tex/generic/babel/xebabel.def +texmf-dist/tex/generic/babel-english/american.ldf +texmf-dist/tex/generic/babel-english/australian.ldf +texmf-dist/tex/generic/babel-english/british.ldf +texmf-dist/tex/generic/babel-english/canadian.ldf +texmf-dist/tex/generic/babel-english/english.ldf +texmf-dist/tex/generic/babel-english/newzealand.ldf +texmf-dist/tex/generic/babel-english/ukenglish.ldf +texmf-dist/tex/generic/babel-english/usenglish.ldf +texmf-dist/bibtex/bst/babelbib/bababbr3-fl.bst +texmf-dist/bibtex/bst/babelbib/bababbr3-lf.bst +texmf-dist/bibtex/bst/babelbib/bababbr3.bst +texmf-dist/bibtex/bst/babelbib/bababbrv-fl.bst +texmf-dist/bibtex/bst/babelbib/bababbrv-lf.bst +texmf-dist/bibtex/bst/babelbib/bababbrv.bst +texmf-dist/bibtex/bst/babelbib/babalpha-fl.bst +texmf-dist/bibtex/bst/babelbib/babalpha-lf.bst +texmf-dist/bibtex/bst/babelbib/babalpha.bst +texmf-dist/bibtex/bst/babelbib/babamspl.bst +texmf-dist/bibtex/bst/babelbib/babplai3-fl.bst +texmf-dist/bibtex/bst/babelbib/babplai3-lf.bst +texmf-dist/bibtex/bst/babelbib/babplai3.bst +texmf-dist/bibtex/bst/babelbib/babplain-fl.bst +texmf-dist/bibtex/bst/babelbib/babplain-lf.bst +texmf-dist/bibtex/bst/babelbib/babplain.bst +texmf-dist/bibtex/bst/babelbib/babunsrt-fl.bst +texmf-dist/bibtex/bst/babelbib/babunsrt-lf.bst +texmf-dist/bibtex/bst/babelbib/babunsrt.bst +texmf-dist/tex/latex/babelbib/afrikaans.bdf +texmf-dist/tex/latex/babelbib/babelbib.sty +texmf-dist/tex/latex/babelbib/bahasa.bdf +texmf-dist/tex/latex/babelbib/catalan.bdf +texmf-dist/tex/latex/babelbib/croatian.bdf +texmf-dist/tex/latex/babelbib/czech.bdf +texmf-dist/tex/latex/babelbib/danish.bdf +texmf-dist/tex/latex/babelbib/dutch.bdf +texmf-dist/tex/latex/babelbib/english.bdf +texmf-dist/tex/latex/babelbib/esperanto.bdf +texmf-dist/tex/latex/babelbib/finnish.bdf +texmf-dist/tex/latex/babelbib/french.bdf +texmf-dist/tex/latex/babelbib/galician.bdf +texmf-dist/tex/latex/babelbib/german.bdf +texmf-dist/tex/latex/babelbib/greek.bdf +texmf-dist/tex/latex/babelbib/italian.bdf +texmf-dist/tex/latex/babelbib/norsk.bdf +texmf-dist/tex/latex/babelbib/portuguese.bdf +texmf-dist/tex/latex/babelbib/romanian.bdf +texmf-dist/tex/latex/babelbib/russian.bdf +texmf-dist/tex/latex/babelbib/serbian.bdf +texmf-dist/tex/latex/babelbib/spanish.bdf +texmf-dist/tex/latex/babelbib/swedish.bdf +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 +texmf-dist/tex/latex/carlisle/dotlessj.sty +texmf-dist/tex/latex/carlisle/ltxtable.sty +texmf-dist/tex/latex/carlisle/mylatex.ltx +texmf-dist/tex/latex/carlisle/plain.sty +texmf-dist/tex/latex/carlisle/remreset.sty +texmf-dist/tex/latex/carlisle/scalefnt.sty +texmf-dist/tex/latex/carlisle/slashed.sty +texmf-dist/scripts/checkcites/checkcites.lua +texmf-dist/tex/luatex/chickenize/chickenize.lua +texmf-dist/tex/luatex/chickenize/chickenize.sty +texmf-dist/tex/luatex/chickenize/chickenize.tex +texmf-dist/scripts/cloze/cloze.lua +texmf-dist/tex/lualatex/cloze/cloze.sty +texmf-dist/fonts/map/dvips/cm/cmtext-bsr-interpolated.map +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmbx10.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmex10.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmmi10.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmmi7.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr10.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr12.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr17.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr6.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr7.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr8.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmsl10.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmsy10.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmsy7.pk +texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmti10.pk +texmf-dist/fonts/source/public/cm/accent.mf +texmf-dist/fonts/source/public/cm/bigacc.mf +texmf-dist/fonts/source/public/cm/bigdel.mf +texmf-dist/fonts/source/public/cm/bigop.mf +texmf-dist/fonts/source/public/cm/calu.mf +texmf-dist/fonts/source/public/cm/cmb10.mf +texmf-dist/fonts/source/public/cm/cmbase.mf +texmf-dist/fonts/source/public/cm/cmbcsc10.mf +texmf-dist/fonts/source/public/cm/cmbsy10.mf +texmf-dist/fonts/source/public/cm/cmbtex10.mf +texmf-dist/fonts/source/public/cm/cmbtt10.mf +texmf-dist/fonts/source/public/cm/cmbtt8.mf +texmf-dist/fonts/source/public/cm/cmbtt9.mf +texmf-dist/fonts/source/public/cm/cmbx10.mf +texmf-dist/fonts/source/public/cm/cmbx12.mf +texmf-dist/fonts/source/public/cm/cmbx5.mf +texmf-dist/fonts/source/public/cm/cmbx6.mf +texmf-dist/fonts/source/public/cm/cmbx7.mf +texmf-dist/fonts/source/public/cm/cmbx8.mf +texmf-dist/fonts/source/public/cm/cmbx9.mf +texmf-dist/fonts/source/public/cm/cmbxsl10.mf +texmf-dist/fonts/source/public/cm/cmbxti10.mf +texmf-dist/fonts/source/public/cm/cmcsc10.mf +texmf-dist/fonts/source/public/cm/cmdunh10.mf +texmf-dist/fonts/source/public/cm/cmex10.mf +texmf-dist/fonts/source/public/cm/cmexb10.mf +texmf-dist/fonts/source/public/cm/cmff10.mf +texmf-dist/fonts/source/public/cm/cmfi10.mf +texmf-dist/fonts/source/public/cm/cmfib8.mf +texmf-dist/fonts/source/public/cm/cminch.mf +texmf-dist/fonts/source/public/cm/cmitt10.mf +texmf-dist/fonts/source/public/cm/cmmi10.mf +texmf-dist/fonts/source/public/cm/cmmi12.mf +texmf-dist/fonts/source/public/cm/cmmi5.mf +texmf-dist/fonts/source/public/cm/cmmi6.mf +texmf-dist/fonts/source/public/cm/cmmi7.mf +texmf-dist/fonts/source/public/cm/cmmi8.mf +texmf-dist/fonts/source/public/cm/cmmi9.mf +texmf-dist/fonts/source/public/cm/cmmib10.mf +texmf-dist/fonts/source/public/cm/cmplain.mf +texmf-dist/fonts/source/public/cm/cmr10.mf +texmf-dist/fonts/source/public/cm/cmr12.mf +texmf-dist/fonts/source/public/cm/cmr17.mf +texmf-dist/fonts/source/public/cm/cmr5.mf +texmf-dist/fonts/source/public/cm/cmr6.mf +texmf-dist/fonts/source/public/cm/cmr7.mf +texmf-dist/fonts/source/public/cm/cmr8.mf +texmf-dist/fonts/source/public/cm/cmr9.mf +texmf-dist/fonts/source/public/cm/cmsl10.mf +texmf-dist/fonts/source/public/cm/cmsl12.mf +texmf-dist/fonts/source/public/cm/cmsl8.mf +texmf-dist/fonts/source/public/cm/cmsl9.mf +texmf-dist/fonts/source/public/cm/cmsltt10.mf +texmf-dist/fonts/source/public/cm/cmss10.mf +texmf-dist/fonts/source/public/cm/cmss12.mf +texmf-dist/fonts/source/public/cm/cmss17.mf +texmf-dist/fonts/source/public/cm/cmss8.mf +texmf-dist/fonts/source/public/cm/cmss9.mf +texmf-dist/fonts/source/public/cm/cmssbx10.mf +texmf-dist/fonts/source/public/cm/cmssdc10.mf +texmf-dist/fonts/source/public/cm/cmssi10.mf +texmf-dist/fonts/source/public/cm/cmssi12.mf +texmf-dist/fonts/source/public/cm/cmssi17.mf +texmf-dist/fonts/source/public/cm/cmssi8.mf +texmf-dist/fonts/source/public/cm/cmssi9.mf +texmf-dist/fonts/source/public/cm/cmssq8.mf +texmf-dist/fonts/source/public/cm/cmssqi8.mf +texmf-dist/fonts/source/public/cm/cmsy10.mf +texmf-dist/fonts/source/public/cm/cmsy5.mf +texmf-dist/fonts/source/public/cm/cmsy6.mf +texmf-dist/fonts/source/public/cm/cmsy7.mf +texmf-dist/fonts/source/public/cm/cmsy8.mf +texmf-dist/fonts/source/public/cm/cmsy9.mf +texmf-dist/fonts/source/public/cm/cmtcsc10.mf +texmf-dist/fonts/source/public/cm/cmtex10.mf +texmf-dist/fonts/source/public/cm/cmtex8.mf +texmf-dist/fonts/source/public/cm/cmtex9.mf +texmf-dist/fonts/source/public/cm/cmti10.mf +texmf-dist/fonts/source/public/cm/cmti12.mf +texmf-dist/fonts/source/public/cm/cmti7.mf +texmf-dist/fonts/source/public/cm/cmti8.mf +texmf-dist/fonts/source/public/cm/cmti9.mf +texmf-dist/fonts/source/public/cm/cmtt10.mf +texmf-dist/fonts/source/public/cm/cmtt12.mf +texmf-dist/fonts/source/public/cm/cmtt8.mf +texmf-dist/fonts/source/public/cm/cmtt9.mf +texmf-dist/fonts/source/public/cm/cmttb10.mf +texmf-dist/fonts/source/public/cm/cmu10.mf +texmf-dist/fonts/source/public/cm/cmvtt10.mf +texmf-dist/fonts/source/public/cm/comlig.mf +texmf-dist/fonts/source/public/cm/csc.mf +texmf-dist/fonts/source/public/cm/cscspu.mf +texmf-dist/fonts/source/public/cm/greekl.mf +texmf-dist/fonts/source/public/cm/greeku.mf +texmf-dist/fonts/source/public/cm/itald.mf +texmf-dist/fonts/source/public/cm/italig.mf +texmf-dist/fonts/source/public/cm/itall.mf +texmf-dist/fonts/source/public/cm/italms.mf +texmf-dist/fonts/source/public/cm/italp.mf +texmf-dist/fonts/source/public/cm/italsp.mf +texmf-dist/fonts/source/public/cm/mathex.mf +texmf-dist/fonts/source/public/cm/mathit.mf +texmf-dist/fonts/source/public/cm/mathsy.mf +texmf-dist/fonts/source/public/cm/olddig.mf +texmf-dist/fonts/source/public/cm/punct.mf +texmf-dist/fonts/source/public/cm/roman.mf +texmf-dist/fonts/source/public/cm/romand.mf +texmf-dist/fonts/source/public/cm/romanl.mf +texmf-dist/fonts/source/public/cm/romanp.mf +texmf-dist/fonts/source/public/cm/romanu.mf +texmf-dist/fonts/source/public/cm/romlig.mf +texmf-dist/fonts/source/public/cm/romms.mf +texmf-dist/fonts/source/public/cm/romspl.mf +texmf-dist/fonts/source/public/cm/romspu.mf +texmf-dist/fonts/source/public/cm/romsub.mf +texmf-dist/fonts/source/public/cm/sym.mf +texmf-dist/fonts/source/public/cm/symbol.mf +texmf-dist/fonts/source/public/cm/texset.mf +texmf-dist/fonts/source/public/cm/textit.mf +texmf-dist/fonts/source/public/cm/title.mf +texmf-dist/fonts/source/public/cm/tset.mf +texmf-dist/fonts/source/public/cm/tsetsl.mf +texmf-dist/fonts/source/public/cm/white_setup.mf +texmf-dist/fonts/tfm/public/cm/cmb10.tfm +texmf-dist/fonts/tfm/public/cm/cmbcsc10.tfm +texmf-dist/fonts/tfm/public/cm/cmbsy10.tfm +texmf-dist/fonts/tfm/public/cm/cmbx10.tfm +texmf-dist/fonts/tfm/public/cm/cmbx12.tfm +texmf-dist/fonts/tfm/public/cm/cmbx5.tfm +texmf-dist/fonts/tfm/public/cm/cmbx6.tfm +texmf-dist/fonts/tfm/public/cm/cmbx7.tfm +texmf-dist/fonts/tfm/public/cm/cmbx8.tfm +texmf-dist/fonts/tfm/public/cm/cmbx9.tfm +texmf-dist/fonts/tfm/public/cm/cmbxsl10.tfm +texmf-dist/fonts/tfm/public/cm/cmbxti10.tfm +texmf-dist/fonts/tfm/public/cm/cmcsc10.tfm +texmf-dist/fonts/tfm/public/cm/cmdunh10.tfm +texmf-dist/fonts/tfm/public/cm/cmex10.tfm +texmf-dist/fonts/tfm/public/cm/cmff10.tfm +texmf-dist/fonts/tfm/public/cm/cmfi10.tfm +texmf-dist/fonts/tfm/public/cm/cmfib8.tfm +texmf-dist/fonts/tfm/public/cm/cminch.tfm +texmf-dist/fonts/tfm/public/cm/cmitt10.tfm +texmf-dist/fonts/tfm/public/cm/cmmi10.tfm +texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +texmf-dist/fonts/tfm/public/cm/cmmi5.tfm +texmf-dist/fonts/tfm/public/cm/cmmi6.tfm +texmf-dist/fonts/tfm/public/cm/cmmi7.tfm +texmf-dist/fonts/tfm/public/cm/cmmi8.tfm +texmf-dist/fonts/tfm/public/cm/cmmi9.tfm +texmf-dist/fonts/tfm/public/cm/cmmib10.tfm +texmf-dist/fonts/tfm/public/cm/cmr10.tfm +texmf-dist/fonts/tfm/public/cm/cmr12.tfm +texmf-dist/fonts/tfm/public/cm/cmr17.tfm +texmf-dist/fonts/tfm/public/cm/cmr5.tfm +texmf-dist/fonts/tfm/public/cm/cmr6.tfm +texmf-dist/fonts/tfm/public/cm/cmr7.tfm +texmf-dist/fonts/tfm/public/cm/cmr8.tfm +texmf-dist/fonts/tfm/public/cm/cmr9.tfm +texmf-dist/fonts/tfm/public/cm/cmsl10.tfm +texmf-dist/fonts/tfm/public/cm/cmsl12.tfm +texmf-dist/fonts/tfm/public/cm/cmsl8.tfm +texmf-dist/fonts/tfm/public/cm/cmsl9.tfm +texmf-dist/fonts/tfm/public/cm/cmsltt10.tfm +texmf-dist/fonts/tfm/public/cm/cmss10.tfm +texmf-dist/fonts/tfm/public/cm/cmss12.tfm +texmf-dist/fonts/tfm/public/cm/cmss17.tfm +texmf-dist/fonts/tfm/public/cm/cmss8.tfm +texmf-dist/fonts/tfm/public/cm/cmss9.tfm +texmf-dist/fonts/tfm/public/cm/cmssbx10.tfm +texmf-dist/fonts/tfm/public/cm/cmssdc10.tfm +texmf-dist/fonts/tfm/public/cm/cmssi10.tfm +texmf-dist/fonts/tfm/public/cm/cmssi12.tfm +texmf-dist/fonts/tfm/public/cm/cmssi17.tfm +texmf-dist/fonts/tfm/public/cm/cmssi8.tfm +texmf-dist/fonts/tfm/public/cm/cmssi9.tfm +texmf-dist/fonts/tfm/public/cm/cmssq8.tfm +texmf-dist/fonts/tfm/public/cm/cmssqi8.tfm +texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +texmf-dist/fonts/tfm/public/cm/cmsy5.tfm +texmf-dist/fonts/tfm/public/cm/cmsy6.tfm +texmf-dist/fonts/tfm/public/cm/cmsy7.tfm +texmf-dist/fonts/tfm/public/cm/cmsy8.tfm +texmf-dist/fonts/tfm/public/cm/cmsy9.tfm +texmf-dist/fonts/tfm/public/cm/cmtcsc10.tfm +texmf-dist/fonts/tfm/public/cm/cmtex10.tfm +texmf-dist/fonts/tfm/public/cm/cmtex8.tfm +texmf-dist/fonts/tfm/public/cm/cmtex9.tfm +texmf-dist/fonts/tfm/public/cm/cmti10.tfm +texmf-dist/fonts/tfm/public/cm/cmti12.tfm +texmf-dist/fonts/tfm/public/cm/cmti7.tfm +texmf-dist/fonts/tfm/public/cm/cmti8.tfm +texmf-dist/fonts/tfm/public/cm/cmti9.tfm +texmf-dist/fonts/tfm/public/cm/cmtt10.tfm +texmf-dist/fonts/tfm/public/cm/cmtt12.tfm +texmf-dist/fonts/tfm/public/cm/cmtt8.tfm +texmf-dist/fonts/tfm/public/cm/cmtt9.tfm +texmf-dist/fonts/tfm/public/cm/cmu10.tfm +texmf-dist/fonts/tfm/public/cm/cmvtt10.tfm +texmf-dist/tex/latex/colortbl/colortbl.sty +texmf-dist/tex/lualatex/cstypo/cstypo.sty +texmf-dist/tex/luatex/cstypo/cstypo-tex.tex +texmf-dist/tex/luatex/cstypo/cstypo.lua +texmf-dist/tex/luatex/ctablestack/ctablestack.sty +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 +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.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/dehyph-exptl/dehyphn-x-2017-03-31.pat +texmf-dist/tex/generic/dehyph-exptl/dehyphn-x-2017-03-31.tex +texmf-dist/tex/generic/dehyph-exptl/dehypht-x-2017-03-31.pat +texmf-dist/tex/generic/dehyph-exptl/dehypht-x-2017-03-31.tex +texmf-dist/tex/generic/dehyph-exptl/dehyphts-x-2017-03-31.pat +texmf-dist/tex/generic/dehyph-exptl/dehyphts-x-2017-03-31.tex +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 +texmf-dist/tex/generic/enctex/1250-csf.tex +texmf-dist/tex/generic/enctex/1250-il2.tex +texmf-dist/tex/generic/enctex/1250-latex.tex +texmf-dist/tex/generic/enctex/1250-t1.tex +texmf-dist/tex/generic/enctex/852-csf.tex +texmf-dist/tex/generic/enctex/852-il2.tex +texmf-dist/tex/generic/enctex/852-latex.tex +texmf-dist/tex/generic/enctex/852-t1.tex +texmf-dist/tex/generic/enctex/csfmacro.tex +texmf-dist/tex/generic/enctex/enc-u.tex +texmf-dist/tex/generic/enctex/encmacro.tex +texmf-dist/tex/generic/enctex/il2-1250.tex +texmf-dist/tex/generic/enctex/il2-852.tex +texmf-dist/tex/generic/enctex/il2-csf.tex +texmf-dist/tex/generic/enctex/il2-kam.tex +texmf-dist/tex/generic/enctex/il2-t1.tex +texmf-dist/tex/generic/enctex/kam-csf.tex +texmf-dist/tex/generic/enctex/kam-il2.tex +texmf-dist/tex/generic/enctex/kam-latex.tex +texmf-dist/tex/generic/enctex/kam-t1.tex +texmf-dist/tex/generic/enctex/mixcodes.tex +texmf-dist/tex/generic/enctex/noprefnt.tex +texmf-dist/tex/generic/enctex/plain-1250-cs.tex +texmf-dist/tex/generic/enctex/plain-852-cs.tex +texmf-dist/tex/generic/enctex/plain-il2-cs.tex +texmf-dist/tex/generic/enctex/plain-kam-cs.tex +texmf-dist/tex/generic/enctex/plain-utf8-cs.tex +texmf-dist/tex/generic/enctex/plain-utf8-ec.tex +texmf-dist/tex/generic/enctex/polyset.tex +texmf-dist/tex/generic/enctex/t1macro.tex +texmf-dist/tex/generic/enctex/utf8-csf.tex +texmf-dist/tex/generic/enctex/utf8-t1.tex +texmf-dist/tex/generic/enctex/utf8cseq.tex +texmf-dist/tex/generic/enctex/utf8lat1.tex +texmf-dist/tex/generic/enctex/utf8lata.tex +texmf-dist/tex/generic/enctex/utf8math.tex +texmf-dist/tex/generic/enctex/utf8off.tex +texmf-dist/tex/generic/enctex/utf8raw.tex +texmf-dist/tex/generic/enctex/utf8unkn.tex +texmf-dist/tex/generic/enctex/utf8warn.tex +texmf-dist/scripts/context/lua/third/enigma/mtx-t-enigma.lua/mtx-t-enigma.lua +texmf-dist/tex/context/third/enigma/t-enigma.mkv/t-enigma.mkvi +texmf-dist/tex/generic/enigma/enigma.lua +texmf-dist/tex/latex/enigma/enigma.sty +texmf-dist/tex/plain/enigma/enigma.tex +texmf-dist/fonts/source/public/etex/xbmc10.mf +texmf-dist/fonts/tfm/public/etex/xbmc10.tfm +texmf-dist/tex/plain/etex/etex.src +texmf-dist/tex/plain/etex/etexdefs.lib +texmf-dist/tex/latex/etex-pkg/etex.sty +texmf-dist/tex/latex/fancyhdr/extramarks.sty +texmf-dist/tex/latex/fancyhdr/fancyhdr.sty +texmf-dist/tex/latex/fancyhdr/fancyheadings.sty +texmf-dist/tex/latex/fix2col/fix2col.sty +texmf-dist/tex/latex/geometry/geometry.sty +texmf-dist/fonts/map/glyphlist/glyphlist.txt +texmf-dist/fonts/map/glyphlist/pdfglyphlist.txt +texmf-dist/fonts/map/glyphlist/texglyphlist.txt +texmf-dist/tex/latex/graphics/color.sty +texmf-dist/tex/latex/graphics/dvipdf.def +texmf-dist/tex/latex/graphics/dvipsnam.def +texmf-dist/tex/latex/graphics/dvipsone.def +texmf-dist/tex/latex/graphics/dviwin.def +texmf-dist/tex/latex/graphics/emtex.def +texmf-dist/tex/latex/graphics/epsfig.sty +texmf-dist/tex/latex/graphics/graphics.sty +texmf-dist/tex/latex/graphics/graphicx.sty +texmf-dist/tex/latex/graphics/keyval.sty +texmf-dist/tex/latex/graphics/lscape.sty +texmf-dist/tex/latex/graphics/pctex32.def +texmf-dist/tex/latex/graphics/pctexhp.def +texmf-dist/tex/latex/graphics/pctexps.def +texmf-dist/tex/latex/graphics/pctexwin.def +texmf-dist/tex/latex/graphics/rotating.sty +texmf-dist/tex/latex/graphics/tcidvi.def +texmf-dist/tex/latex/graphics/trig.sty +texmf-dist/tex/latex/graphics/truetex.def +texmf-dist/tex/latex/graphics-cfg/color.cfg +texmf-dist/tex/latex/graphics-cfg/graphics.cfg +texmf-dist/tex/latex/graphics-def/dvipdfmx.def +texmf-dist/tex/latex/graphics-def/dvips.def +texmf-dist/tex/latex/graphics-def/dvisvgm.def +texmf-dist/tex/latex/graphics-def/luatex.def +texmf-dist/tex/latex/graphics-def/pdftex.def +texmf-dist/tex/latex/graphics-def/xetex.def +texmf-dist/dvips/gsftopk/render.ps +texmf-dist/tex/latex/hyperref/backref.sty +texmf-dist/tex/latex/hyperref/hdvipdfm.def +texmf-dist/tex/latex/hyperref/hdvips.def +texmf-dist/tex/latex/hyperref/hdvipson.def +texmf-dist/tex/latex/hyperref/hdviwind.def +texmf-dist/tex/latex/hyperref/hluatex.def +texmf-dist/tex/latex/hyperref/hpdftex.def +texmf-dist/tex/latex/hyperref/htex4ht.cfg +texmf-dist/tex/latex/hyperref/htex4ht.def +texmf-dist/tex/latex/hyperref/htexture.def +texmf-dist/tex/latex/hyperref/hvtex.def +texmf-dist/tex/latex/hyperref/hvtexhtm.def +texmf-dist/tex/latex/hyperref/hvtexmrk.def +texmf-dist/tex/latex/hyperref/hxetex.def +texmf-dist/tex/latex/hyperref/hylatex.ltx +texmf-dist/tex/latex/hyperref/hyperref.sty +texmf-dist/tex/latex/hyperref/hypertex.def +texmf-dist/tex/latex/hyperref/minitoc-hyper.sty +texmf-dist/tex/latex/hyperref/nameref.sty +texmf-dist/tex/latex/hyperref/nohyperref.sty +texmf-dist/tex/latex/hyperref/ntheorem-hyper.sty +texmf-dist/tex/latex/hyperref/pd1enc.def +texmf-dist/tex/latex/hyperref/pdfmark.def +texmf-dist/tex/latex/hyperref/psdextra.def +texmf-dist/tex/latex/hyperref/puarenc.def +texmf-dist/tex/latex/hyperref/puenc.def +texmf-dist/tex/latex/hyperref/puvnenc.def +texmf-dist/tex/latex/hyperref/xr-hyper.sty +texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex +texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-il2.tex +texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-il3.tex +texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-l7x.tex +texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-lmc.tex +texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-lth.tex +texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-qx.tex +texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t2a.tex +texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t8m.tex +texmf-dist/tex/luatex/hyph-utf8/etex.src +texmf-dist/tex/luatex/hyph-utf8/luatex-hyphen.lua +texmf-dist/tex/generic/config/language.dat +texmf-dist/tex/generic/config/language.dat.lua +texmf-dist/tex/generic/config/language.def +texmf-dist/tex/generic/config/language.us +texmf-dist/tex/generic/config/language.us.def +texmf-dist/tex/generic/config/language.us.lua +texmf-dist/tex/generic/hyphen/dumyhyph.tex +texmf-dist/tex/generic/hyphen/hyphen.tex +texmf-dist/tex/generic/hyphen/hypht1.tex +texmf-dist/tex/generic/hyphen/zerohyph.tex +texmf-dist/tex/generic/oberdiek/ifluatex.sty +texmf-dist/tex/generic/ifxetex/ifxetex.sty +texmf-dist/tex/luatex/interpreter/interpreter.lua +texmf-dist/tex/luatex/interpreter/interpreter.sty +texmf-dist/tex/luatex/interpreter/interpreter.tex +texmf-dist/fonts/source/public/knuth-lib/3test.mf +texmf-dist/fonts/source/public/knuth-lib/6test.mf +texmf-dist/fonts/source/public/knuth-lib/expr.mf +texmf-dist/fonts/source/public/knuth-lib/grayf.mf +texmf-dist/fonts/source/public/knuth-lib/io.mf +texmf-dist/fonts/source/public/knuth-lib/logo.mf +texmf-dist/fonts/source/public/knuth-lib/logo10.mf +texmf-dist/fonts/source/public/knuth-lib/logo8.mf +texmf-dist/fonts/source/public/knuth-lib/logo9.mf +texmf-dist/fonts/source/public/knuth-lib/logobf10.mf +texmf-dist/fonts/source/public/knuth-lib/logosl10.mf +texmf-dist/fonts/source/public/knuth-lib/manfnt.mf +texmf-dist/fonts/source/public/knuth-lib/null.mf +texmf-dist/fonts/source/public/knuth-lib/rtest.mf +texmf-dist/fonts/source/public/knuth-lib/slant.mf +texmf-dist/fonts/source/public/knuth-lib/test.mf +texmf-dist/fonts/source/public/knuth-lib/waits.mf +texmf-dist/fonts/source/public/knuth-lib/ztest.mf +texmf-dist/fonts/tfm/public/knuth-lib/logo10.tfm +texmf-dist/fonts/tfm/public/knuth-lib/logo8.tfm +texmf-dist/fonts/tfm/public/knuth-lib/logo9.tfm +texmf-dist/fonts/tfm/public/knuth-lib/logobf10.tfm +texmf-dist/fonts/tfm/public/knuth-lib/logosl10.tfm +texmf-dist/fonts/tfm/public/knuth-lib/manfnt.tfm +texmf-dist/tex/generic/knuth-lib/null.tex +texmf-dist/tex/plain/knuth-lib/manmac.tex +texmf-dist/tex/plain/knuth-lib/mftmac.tex +texmf-dist/tex/plain/knuth-lib/story.tex +texmf-dist/tex/plain/knuth-lib/testfont.tex +texmf-dist/tex/plain/knuth-lib/webmac.tex +texmf-dist/fonts/source/public/knuth-local/black.mf +texmf-dist/fonts/source/public/knuth-local/blackaps.mf +texmf-dist/fonts/source/public/knuth-local/blackimagen.mf +texmf-dist/fonts/source/public/knuth-local/blacklino.mf +texmf-dist/fonts/source/public/knuth-local/blacklj.mf +texmf-dist/fonts/source/public/knuth-local/domino.mf +texmf-dist/fonts/source/public/knuth-local/gray.mf +texmf-dist/fonts/source/public/knuth-local/grayaps.mf +texmf-dist/fonts/source/public/knuth-local/grayimagen.mf +texmf-dist/fonts/source/public/knuth-local/grayimagen3.mf +texmf-dist/fonts/source/public/knuth-local/grayimagenlight.mf +texmf-dist/fonts/source/public/knuth-local/graylj.mf +texmf-dist/fonts/source/public/knuth-local/local.mf +texmf-dist/fonts/source/public/knuth-local/logod10.mf +texmf-dist/fonts/source/public/knuth-local/logosl9.mf +texmf-dist/fonts/source/public/knuth-local/mfman.mf +texmf-dist/fonts/source/public/knuth-local/oneone.mf +texmf-dist/fonts/source/public/knuth-local/random.mf +texmf-dist/fonts/source/public/knuth-local/slantaps4.mf +texmf-dist/fonts/source/public/knuth-local/slantimagen4.mf +texmf-dist/fonts/source/public/knuth-local/slantimagen6.mf +texmf-dist/fonts/source/public/knuth-local/slantlino4.mf +texmf-dist/fonts/source/public/knuth-local/slantlj4.mf +texmf-dist/fonts/source/public/knuth-local/snfont.mf +texmf-dist/fonts/tfm/public/knuth-local/domino.tfm +texmf-dist/fonts/tfm/public/knuth-local/logod10.tfm +texmf-dist/fonts/tfm/public/knuth-local/logosl9.tfm +texmf-dist/fonts/tfm/public/knuth-local/random.tfm +texmf-dist/fonts/tfm/public/knuth-local/snfont.tfm +texmf-dist/mft/knuth-local/e.mft +texmf-dist/tex/plain/knuth-local/xepsf.tex +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 +texmf-dist/makeindex/latex/gglo.ist +texmf-dist/makeindex/latex/gind.ist +texmf-dist/tex/latex/base/alltt.sty +texmf-dist/tex/latex/base/ansinew.def +texmf-dist/tex/latex/base/applemac.def +texmf-dist/tex/latex/base/article.cls +texmf-dist/tex/latex/base/article.sty +texmf-dist/tex/latex/base/ascii.def +texmf-dist/tex/latex/base/bezier.sty +texmf-dist/tex/latex/base/bk10.clo +texmf-dist/tex/latex/base/bk11.clo +texmf-dist/tex/latex/base/bk12.clo +texmf-dist/tex/latex/base/book.cls +texmf-dist/tex/latex/base/book.sty +texmf-dist/tex/latex/base/cp1250.def +texmf-dist/tex/latex/base/cp1252.def +texmf-dist/tex/latex/base/cp1257.def +texmf-dist/tex/latex/base/cp437.def +texmf-dist/tex/latex/base/cp437de.def +texmf-dist/tex/latex/base/cp850.def +texmf-dist/tex/latex/base/cp852.def +texmf-dist/tex/latex/base/cp858.def +texmf-dist/tex/latex/base/cp865.def +texmf-dist/tex/latex/base/decmulti.def +texmf-dist/tex/latex/base/doc.sty +texmf-dist/tex/latex/base/docstrip.tex +texmf-dist/tex/latex/base/exscale.sty +texmf-dist/tex/latex/base/fix-cm.sty +texmf-dist/tex/latex/base/fixltx2e.sty +texmf-dist/tex/latex/base/flafter.sty +texmf-dist/tex/latex/base/fleqn.clo +texmf-dist/tex/latex/base/fleqn.sty +texmf-dist/tex/latex/base/fltrace.sty +texmf-dist/tex/latex/base/fontenc.sty +texmf-dist/tex/latex/base/fontmath.cfg +texmf-dist/tex/latex/base/fontmath.ltx +texmf-dist/tex/latex/base/fonttext.cfg +texmf-dist/tex/latex/base/fonttext.ltx +texmf-dist/tex/latex/base/graphpap.sty +texmf-dist/tex/latex/base/hyphen.ltx +texmf-dist/tex/latex/base/idx.tex +texmf-dist/tex/latex/base/ifthen.sty +texmf-dist/tex/latex/base/inputenc.sty +texmf-dist/tex/latex/base/lablst.tex +texmf-dist/tex/latex/base/latex.ltx +texmf-dist/tex/latex/base/latex209.def +texmf-dist/tex/latex/base/latexrelease.sty +texmf-dist/tex/latex/base/latexsym.sty +texmf-dist/tex/latex/base/latin1.def +texmf-dist/tex/latex/base/latin10.def +texmf-dist/tex/latex/base/latin2.def +texmf-dist/tex/latex/base/latin3.def +texmf-dist/tex/latex/base/latin4.def +texmf-dist/tex/latex/base/latin5.def +texmf-dist/tex/latex/base/latin9.def +texmf-dist/tex/latex/base/lcyenc.dfu +texmf-dist/tex/latex/base/leqno.clo +texmf-dist/tex/latex/base/leqno.sty +texmf-dist/tex/latex/base/letter.cls +texmf-dist/tex/latex/base/letter.sty +texmf-dist/tex/latex/base/lppl.tex +texmf-dist/tex/latex/base/ltluatex.lua +texmf-dist/tex/latex/base/ltluatex.tex +texmf-dist/tex/latex/base/ltnews.cls +texmf-dist/tex/latex/base/ltxcheck.tex +texmf-dist/tex/latex/base/ltxdoc.cls +texmf-dist/tex/latex/base/ltxguide.cls +texmf-dist/tex/latex/base/ly1enc.dfu +texmf-dist/tex/latex/base/macce.def +texmf-dist/tex/latex/base/makeidx.sty +texmf-dist/tex/latex/base/minimal.cls +texmf-dist/tex/latex/base/newlfont.sty +texmf-dist/tex/latex/base/next.def +texmf-dist/tex/latex/base/nfssfont.tex +texmf-dist/tex/latex/base/oldlfont.sty +texmf-dist/tex/latex/base/omlcmm.fd +texmf-dist/tex/latex/base/omlcmr.fd +texmf-dist/tex/latex/base/omlenc.def +texmf-dist/tex/latex/base/omllcmm.fd +texmf-dist/tex/latex/base/omscmr.fd +texmf-dist/tex/latex/base/omscmsy.fd +texmf-dist/tex/latex/base/omsenc.def +texmf-dist/tex/latex/base/omsenc.dfu +texmf-dist/tex/latex/base/omslcmsy.fd +texmf-dist/tex/latex/base/omxcmex.fd +texmf-dist/tex/latex/base/omxlcmex.fd +texmf-dist/tex/latex/base/openbib.sty +texmf-dist/tex/latex/base/ot1cmdh.fd +texmf-dist/tex/latex/base/ot1cmfib.fd +texmf-dist/tex/latex/base/ot1cmfr.fd +texmf-dist/tex/latex/base/ot1cmr.fd +texmf-dist/tex/latex/base/ot1cmss.fd +texmf-dist/tex/latex/base/ot1cmtt.fd +texmf-dist/tex/latex/base/ot1cmvtt.fd +texmf-dist/tex/latex/base/ot1enc.def +texmf-dist/tex/latex/base/ot1enc.dfu +texmf-dist/tex/latex/base/ot1lcmss.fd +texmf-dist/tex/latex/base/ot1lcmtt.fd +texmf-dist/tex/latex/base/ot2enc.dfu +texmf-dist/tex/latex/base/ot4enc.def +texmf-dist/tex/latex/base/preload.cfg +texmf-dist/tex/latex/base/preload.ltx +texmf-dist/tex/latex/base/proc.cls +texmf-dist/tex/latex/base/proc.sty +texmf-dist/tex/latex/base/report.cls +texmf-dist/tex/latex/base/report.sty +texmf-dist/tex/latex/base/sample2e.tex +texmf-dist/tex/latex/base/sfonts.def +texmf-dist/tex/latex/base/shortvrb.sty +texmf-dist/tex/latex/base/showidx.sty +texmf-dist/tex/latex/base/size10.clo +texmf-dist/tex/latex/base/size11.clo +texmf-dist/tex/latex/base/size12.clo +texmf-dist/tex/latex/base/slides.cls +texmf-dist/tex/latex/base/slides.def +texmf-dist/tex/latex/base/slides.sty +texmf-dist/tex/latex/base/small2e.tex +texmf-dist/tex/latex/base/source2e.tex +texmf-dist/tex/latex/base/syntonly.sty +texmf-dist/tex/latex/base/t1cmdh.fd +texmf-dist/tex/latex/base/t1cmfib.fd +texmf-dist/tex/latex/base/t1cmfr.fd +texmf-dist/tex/latex/base/t1cmr.fd +texmf-dist/tex/latex/base/t1cmss.fd +texmf-dist/tex/latex/base/t1cmtt.fd +texmf-dist/tex/latex/base/t1cmvtt.fd +texmf-dist/tex/latex/base/t1enc.def +texmf-dist/tex/latex/base/t1enc.dfu +texmf-dist/tex/latex/base/t1enc.sty +texmf-dist/tex/latex/base/t1lcmss.fd +texmf-dist/tex/latex/base/t1lcmtt.fd +texmf-dist/tex/latex/base/t2aenc.dfu +texmf-dist/tex/latex/base/t2benc.dfu +texmf-dist/tex/latex/base/t2cenc.dfu +texmf-dist/tex/latex/base/testpage.tex +texmf-dist/tex/latex/base/texsys.cfg +texmf-dist/tex/latex/base/textcomp.sty +texmf-dist/tex/latex/base/tracefnt.sty +texmf-dist/tex/latex/base/ts1cmr.fd +texmf-dist/tex/latex/base/ts1cmss.fd +texmf-dist/tex/latex/base/ts1cmtt.fd +texmf-dist/tex/latex/base/ts1cmvtt.fd +texmf-dist/tex/latex/base/ts1enc.def +texmf-dist/tex/latex/base/ts1enc.dfu +texmf-dist/tex/latex/base/tuenc.def +texmf-dist/tex/latex/base/tulmdh.fd +texmf-dist/tex/latex/base/tulmr.fd +texmf-dist/tex/latex/base/tulmss.fd +texmf-dist/tex/latex/base/tulmssq.fd +texmf-dist/tex/latex/base/tulmtt.fd +texmf-dist/tex/latex/base/tulmvtt.fd +texmf-dist/tex/latex/base/ucmr.fd +texmf-dist/tex/latex/base/ucmss.fd +texmf-dist/tex/latex/base/ucmtt.fd +texmf-dist/tex/latex/base/ulasy.fd +texmf-dist/tex/latex/base/ullasy.fd +texmf-dist/tex/latex/base/utf8-test.tex +texmf-dist/tex/latex/base/utf8.def +texmf-dist/tex/latex/base/utf8enc.dfu +texmf-dist/tex/latex/base/utf8test.tex +texmf-dist/tex/latex/base/x2enc.dfu +texmf-dist/fonts/source/public/latex-fonts/circle.mf +texmf-dist/fonts/source/public/latex-fonts/icmcsc10.mf +texmf-dist/fonts/source/public/latex-fonts/icmex10.mf +texmf-dist/fonts/source/public/latex-fonts/icmmi8.mf +texmf-dist/fonts/source/public/latex-fonts/icmsy8.mf +texmf-dist/fonts/source/public/latex-fonts/icmtt8.mf +texmf-dist/fonts/source/public/latex-fonts/ilasy8.mf +texmf-dist/fonts/source/public/latex-fonts/ilcmss8.mf +texmf-dist/fonts/source/public/latex-fonts/ilcmssb8.mf +texmf-dist/fonts/source/public/latex-fonts/ilcmssi8.mf +texmf-dist/fonts/source/public/latex-fonts/lasy.mf +texmf-dist/fonts/source/public/latex-fonts/lasy10.mf +texmf-dist/fonts/source/public/latex-fonts/lasy5.mf +texmf-dist/fonts/source/public/latex-fonts/lasy6.mf +texmf-dist/fonts/source/public/latex-fonts/lasy7.mf +texmf-dist/fonts/source/public/latex-fonts/lasy8.mf +texmf-dist/fonts/source/public/latex-fonts/lasy9.mf +texmf-dist/fonts/source/public/latex-fonts/lasyb10.mf +texmf-dist/fonts/source/public/latex-fonts/lcircle10.mf +texmf-dist/fonts/source/public/latex-fonts/lcirclew10.mf +texmf-dist/fonts/source/public/latex-fonts/lcmss8.mf +texmf-dist/fonts/source/public/latex-fonts/lcmssb8.mf +texmf-dist/fonts/source/public/latex-fonts/lcmssi8.mf +texmf-dist/fonts/source/public/latex-fonts/line.mf +texmf-dist/fonts/source/public/latex-fonts/line10.mf +texmf-dist/fonts/source/public/latex-fonts/linew10.mf +texmf-dist/fonts/source/public/latex-fonts/sroman.mf +texmf-dist/fonts/source/public/latex-fonts/sromanu.mf +texmf-dist/fonts/tfm/public/latex-fonts/icmcsc10.tfm +texmf-dist/fonts/tfm/public/latex-fonts/icmex10.tfm +texmf-dist/fonts/tfm/public/latex-fonts/icmmi8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/icmsy8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/icmtt8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/ilasy8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/ilcmss8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/ilcmssb8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/ilcmssi8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lasy10.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lasy5.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lasy6.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lasy7.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lasy8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lasy9.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lasyb10.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lcircle10.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lcirclew10.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lcmss8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lcmssb8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/lcmssi8.tfm +texmf-dist/fonts/tfm/public/latex-fonts/line10.tfm +texmf-dist/fonts/tfm/public/latex-fonts/linew10.tfm +texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +texmf-dist/tex/latex/latexconfig/hyperref.cfg +texmf-dist/tex/latex/latexconfig/latex.ini +texmf-dist/tex/latex/latexconfig/lualatex-patch-kernel.tex +texmf-dist/tex/latex/latexconfig/lualatex-reset-codes.tex +texmf-dist/tex/latex/latexconfig/lualatexiniconfig.tex +texmf-dist/tex/latex/latexconfig/lualatexquotejobname.lua +texmf-dist/tex/latex/latexconfig/lualatexquotejobname.tex +texmf-dist/tex/latex/latexconfig/mllatex.ini +texmf-dist/tex/latex/latexconfig/pdflatex.ini +texmf-dist/tex/latex/ltxmisc/abstbook.cls +texmf-dist/tex/latex/ltxmisc/beletter.cls +texmf-dist/tex/latex/ltxmisc/bibcheck.sty +texmf-dist/tex/latex/ltxmisc/concrete.sty +texmf-dist/tex/latex/ltxmisc/flashcard.cls +texmf-dist/tex/latex/ltxmisc/iagproc.cls +texmf-dist/tex/latex/ltxmisc/linsys.sty +texmf-dist/tex/latex/ltxmisc/mitpress.sty +texmf-dist/tex/latex/ltxmisc/thrmappendix.sty +texmf-dist/tex/latex/ltxmisc/topcapt.sty +texmf-dist/tex/latex/ltxmisc/vrbexin.sty +texmf-dist/scripts/lua-alt-getopt/alt_getopt.lua +texmf-dist/tex/lualatex/lua-check-hyphen/lua-check-hyphen.lua +texmf-dist/tex/lualatex/lua-check-hyphen/lua-check-hyphen.sty +texmf-dist/tex/luatex/lua-visual-debug/lua-visual-debug.lua +texmf-dist/tex/luatex/lua-visual-debug/lua-visual-debug.sty +texmf-dist/scripts/lua2dox/lua.def +texmf-dist/scripts/lua2dox/lua2dox.lua +texmf-dist/scripts/lua2dox/lua2dox_filter +texmf-dist/tex/lualatex/luabibentry/luabibentry.lua +texmf-dist/tex/lualatex/luabibentry/luabibentry.sty +texmf-dist/tex/lualatex/luabidi/arabmaths.tex +texmf-dist/tex/lualatex/luabidi/autofootnoterule.tex +texmf-dist/tex/lualatex/luabidi/luabidi.sty +texmf-dist/tex/lualatex/luabidi/textwidthfootnoterule.tex +texmf-dist/tex/lualatex/luacode/luacode.sty +texmf-dist/tex/lualatex/luahyphenrules/luahyphenrules.sty +texmf-dist/scripts/luaindex/luaindex.lua +texmf-dist/tex/lualatex/luaindex/luaindex.sty +texmf-dist/tex/lualatex/luainputenc/luainputenc.lua +texmf-dist/tex/lualatex/luainputenc/luainputenc.sty +texmf-dist/tex/lualatex/luainputenc/lutf8.def +texmf-dist/tex/lualatex/luainputenc/lutf8x.def +texmf-dist/tex/lualatex/lualatex-math/lualatex-math.lua +texmf-dist/tex/lualatex/lualatex-math/lualatex-math.sty +texmf-dist/tex/luatex/lualibs/lualibs-basic.lua +texmf-dist/tex/luatex/lualibs/lualibs-boolean.lua +texmf-dist/tex/luatex/lualibs/lualibs-compat.lua +texmf-dist/tex/luatex/lualibs/lualibs-dir.lua +texmf-dist/tex/luatex/lualibs/lualibs-extended.lua +texmf-dist/tex/luatex/lualibs/lualibs-file.lua +texmf-dist/tex/luatex/lualibs/lualibs-function.lua +texmf-dist/tex/luatex/lualibs/lualibs-gzip.lua +texmf-dist/tex/luatex/lualibs/lualibs-io.lua +texmf-dist/tex/luatex/lualibs/lualibs-lpeg.lua +texmf-dist/tex/luatex/lualibs/lualibs-lua.lua +texmf-dist/tex/luatex/lualibs/lualibs-math.lua +texmf-dist/tex/luatex/lualibs/lualibs-md5.lua +texmf-dist/tex/luatex/lualibs/lualibs-number.lua +texmf-dist/tex/luatex/lualibs/lualibs-os.lua +texmf-dist/tex/luatex/lualibs/lualibs-package.lua +texmf-dist/tex/luatex/lualibs/lualibs-set.lua +texmf-dist/tex/luatex/lualibs/lualibs-string.lua +texmf-dist/tex/luatex/lualibs/lualibs-table.lua +texmf-dist/tex/luatex/lualibs/lualibs-trac-inf.lua +texmf-dist/tex/luatex/lualibs/lualibs-unicode.lua +texmf-dist/tex/luatex/lualibs/lualibs-url.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-deb.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-dim.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-fil.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-jsn.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-lua.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-prs.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-sta.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-sto.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-str.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-tab.lua +texmf-dist/tex/luatex/lualibs/lualibs-util-tpl.lua +texmf-dist/tex/luatex/lualibs/lualibs.lua +texmf-dist/tex/luatex/luamplib/luamplib.lua +texmf-dist/tex/luatex/luamplib/luamplib.sty +texmf-dist/scripts/luaotfload/luaotfload-tool.lua +texmf-dist/scripts/luaotfload/mkcharacters +texmf-dist/scripts/luaotfload/mkglyphlist +texmf-dist/scripts/luaotfload/mkimport +texmf-dist/scripts/luaotfload/mkstatus +texmf-dist/scripts/luaotfload/mktests +texmf-dist/tex/luatex/luaotfload/fontloader-2017-02-11.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-basics.tex +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-gbn.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-oup.lua +texmf-dist/tex/luatex/luaotfload/fontloader-font-tfm.lua +texmf-dist/tex/luatex/luaotfload/fontloader-font-ttf.lua +texmf-dist/tex/luatex/luaotfload/fontloader-fonts-demo-vf-1.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-syn.lua +texmf-dist/tex/luatex/luaotfload/fontloader-fonts.lua +texmf-dist/tex/luatex/luaotfload/fontloader-fonts.tex +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-languages.lua +texmf-dist/tex/luatex/luaotfload/fontloader-languages.tex +texmf-dist/tex/luatex/luaotfload/fontloader-math.lua +texmf-dist/tex/luatex/luaotfload/fontloader-math.tex +texmf-dist/tex/luatex/luaotfload/fontloader-mplib.lua +texmf-dist/tex/luatex/luaotfload/fontloader-mplib.tex +texmf-dist/tex/luatex/luaotfload/fontloader-plain.tex +texmf-dist/tex/luatex/luaotfload/fontloader-preprocessor-test.tex +texmf-dist/tex/luatex/luaotfload/fontloader-preprocessor.lua +texmf-dist/tex/luatex/luaotfload/fontloader-preprocessor.tex +texmf-dist/tex/luatex/luaotfload/fontloader-reference.lua +texmf-dist/tex/luatex/luaotfload/fontloader-swiglib-test.lua +texmf-dist/tex/luatex/luaotfload/fontloader-swiglib-test.tex +texmf-dist/tex/luatex/luaotfload/fontloader-swiglib.lua +texmf-dist/tex/luatex/luaotfload/fontloader-swiglib.tex +texmf-dist/tex/luatex/luaotfload/fontloader-test.tex +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-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-features.lua +texmf-dist/tex/luatex/luaotfload/luaotfload-glyphlist.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-parsers.lua +texmf-dist/tex/luatex/luaotfload/luaotfload-resolvers.lua +texmf-dist/tex/luatex/luaotfload/luaotfload-status.lua +texmf-dist/tex/luatex/luaotfload/luaotfload.sty +texmf-dist/scripts/luasseq/luasseq.lua +texmf-dist/tex/lualatex/luasseq/luasseq.sty +texmf-dist/tex/generic/config/luatex-unicode-letters.tex +texmf-dist/tex/generic/config/luatexiniconfig.tex +texmf-dist/web2c/texmfcnf.lua +texmf-dist/tex/generic/luatex85/luatex85.sty +texmf-dist/tex/luatex/luatexbase/luatexbase-attr.sty +texmf-dist/tex/luatex/luatexbase/luatexbase-cctb.sty +texmf-dist/tex/luatex/luatexbase/luatexbase-compat.sty +texmf-dist/tex/luatex/luatexbase/luatexbase-loader.sty +texmf-dist/tex/luatex/luatexbase/luatexbase-mcb.sty +texmf-dist/tex/luatex/luatexbase/luatexbase-modutils.sty +texmf-dist/tex/luatex/luatexbase/luatexbase-regs.sty +texmf-dist/tex/luatex/luatexbase/luatexbase.loader.lua +texmf-dist/tex/luatex/luatexbase/luatexbase.sty +texmf-dist/tex/luatex/luatexko/luatexko-core.sty +texmf-dist/tex/luatex/luatexko/luatexko-normalize.lua +texmf-dist/tex/luatex/luatexko/luatexko-uhc2utf8.lua +texmf-dist/tex/luatex/luatexko/luatexko.lua +texmf-dist/tex/luatex/luatexko/luatexko.sty +texmf-dist/tex/lualatex/luatextra/luatextra.sty +texmf-dist/tex/lualatex/luatodonotes/inspect.lua +texmf-dist/tex/lualatex/luatodonotes/luatodonotes.lua +texmf-dist/tex/lualatex/luatodonotes/luatodonotes.sty +texmf-dist/tex/lualatex/luatodonotes/path_line.lua +texmf-dist/tex/lualatex/luatodonotes/path_point.lua +texmf-dist/tex/luatex/luaxml/dom-sample.lua +texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua +texmf-dist/tex/luatex/luaxml/luaxml-mod-xml.lua +texmf-dist/tex/luatex/luaxml/luaxml-pretty.lua +texmf-dist/tex/luatex/luaxml/luaxml-selectors.lua +texmf-dist/tex/luatex/luaxml/luaxml-stack.lua +texmf-dist/tex/luatex/luaxml/luaxml-testxml.lua +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 +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/modes.mf +texmf-dist/metafont/misc/ps2mfbas.mf +texmf-dist/fonts/source/public/mflogo/logosl8.mf +texmf-dist/fonts/tfm/public/mflogo/logosl8.tfm +texmf-dist/tex/latex/mflogo/mflogo.sty +texmf-dist/tex/latex/mflogo/ulogo.fd +texmf-dist/tex/latex/mfnfss/oldgerm.sty +texmf-dist/tex/latex/mfnfss/ot1panr.fd +texmf-dist/tex/latex/mfnfss/ot1pss.fd +texmf-dist/tex/latex/mfnfss/pandora.sty +texmf-dist/tex/latex/mfnfss/uyfrak.fd +texmf-dist/tex/latex/mfnfss/uygoth.fd +texmf-dist/tex/latex/mfnfss/uyinit.fd +texmf-dist/tex/latex/mfnfss/uyswab.fd +texmf-dist/mft/base/README +texmf-dist/mft/base/cmbase.mft +texmf-dist/mft/base/mplain.mft +texmf-dist/mft/base/plain.mft +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 +texmf-dist/bibtex/bst/natbib/abbrvnat.bst +texmf-dist/bibtex/bst/natbib/plainnat.bst +texmf-dist/bibtex/bst/natbib/unsrtnat.bst +texmf-dist/tex/latex/natbib/bibentry.sty +texmf-dist/tex/latex/natbib/natbib.sty +texmf-dist/tex/luatex/nodetree/nodetree.lua +texmf-dist/tex/luatex/nodetree/nodetree.sty +texmf-dist/tex/luatex/nodetree/nodetree.tex +texmf-dist/bibtex/bib/oberdiek/oberdiek-bundle.bib +texmf-dist/bibtex/bib/oberdiek/oberdiek-source.bib +texmf-dist/scripts/oberdiek/luacolor-pre065.lua +texmf-dist/scripts/oberdiek/luacolor.lua +texmf-dist/scripts/oberdiek/magicnum.lua +texmf-dist/scripts/oberdiek/oberdiek.luacolor-pre065.lua +texmf-dist/scripts/oberdiek/oberdiek.luacolor.lua +texmf-dist/scripts/oberdiek/oberdiek.luatex.lua +texmf-dist/scripts/oberdiek/oberdiek.magicnum.lua +texmf-dist/scripts/oberdiek/oberdiek.pdftexcmds.lua +texmf-dist/scripts/oberdiek/pdfatfi.pl +texmf-dist/scripts/oberdiek/pdftexcmds.lua +texmf-dist/tex/generic/oberdiek/alphalph.sty +texmf-dist/tex/generic/oberdiek/atbegshi.sty +texmf-dist/tex/generic/oberdiek/bigintcalc.sty +texmf-dist/tex/generic/oberdiek/bitset.sty +texmf-dist/tex/generic/oberdiek/catchfile.sty +texmf-dist/tex/generic/oberdiek/embedfile.sty +texmf-dist/tex/generic/oberdiek/engord.sty +texmf-dist/tex/generic/oberdiek/eolgrab.sty +texmf-dist/tex/generic/oberdiek/etexcmds.sty +texmf-dist/tex/generic/oberdiek/fibnum.sty +texmf-dist/tex/generic/oberdiek/gettitlestring.sty +texmf-dist/tex/generic/oberdiek/hobsub-generic.sty +texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty +texmf-dist/tex/generic/oberdiek/hobsub.sty +texmf-dist/tex/generic/oberdiek/hologo.sty +texmf-dist/tex/generic/oberdiek/hyphsubst.sty +texmf-dist/tex/generic/oberdiek/iflang.sty +texmf-dist/tex/generic/oberdiek/ifpdf.sty +texmf-dist/tex/generic/oberdiek/ifvtex.sty +texmf-dist/tex/generic/oberdiek/infwarerr.sty +texmf-dist/tex/generic/oberdiek/intcalc.sty +texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty +texmf-dist/tex/generic/oberdiek/kvsetkeys.sty +texmf-dist/tex/generic/oberdiek/ltxcmds.sty +texmf-dist/tex/generic/oberdiek/luatex-loader.sty +texmf-dist/tex/generic/oberdiek/luatex.sty +texmf-dist/tex/generic/oberdiek/magicnum.sty +texmf-dist/tex/generic/oberdiek/mleftright.sty +texmf-dist/tex/generic/oberdiek/pdfcol.sty +texmf-dist/tex/generic/oberdiek/pdfcrypt.sty +texmf-dist/tex/generic/oberdiek/pdfescape.sty +texmf-dist/tex/generic/oberdiek/pdfrender.sty +texmf-dist/tex/generic/oberdiek/pdftexcmds.sty +texmf-dist/tex/generic/oberdiek/protecteddef.sty +texmf-dist/tex/generic/oberdiek/rotchiffre.sty +texmf-dist/tex/generic/oberdiek/se-ascii-print.def +texmf-dist/tex/generic/oberdiek/se-ascii.def +texmf-dist/tex/generic/oberdiek/se-clean7bit.def +texmf-dist/tex/generic/oberdiek/se-cp1250.def +texmf-dist/tex/generic/oberdiek/se-cp1251.def +texmf-dist/tex/generic/oberdiek/se-cp1252.def +texmf-dist/tex/generic/oberdiek/se-cp1257.def +texmf-dist/tex/generic/oberdiek/se-cp437.def +texmf-dist/tex/generic/oberdiek/se-cp850.def +texmf-dist/tex/generic/oberdiek/se-cp852.def +texmf-dist/tex/generic/oberdiek/se-cp855.def +texmf-dist/tex/generic/oberdiek/se-cp858.def +texmf-dist/tex/generic/oberdiek/se-cp865.def +texmf-dist/tex/generic/oberdiek/se-cp866.def +texmf-dist/tex/generic/oberdiek/se-dec-mcs.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-1.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-10.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-11.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-13.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-14.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-15.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-16.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-2.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-3.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-4.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-5.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-6.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-7.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-8.def +texmf-dist/tex/generic/oberdiek/se-iso-8859-9.def +texmf-dist/tex/generic/oberdiek/se-koi8-r.def +texmf-dist/tex/generic/oberdiek/se-mac-centeuro.def +texmf-dist/tex/generic/oberdiek/se-mac-cyrillic.def +texmf-dist/tex/generic/oberdiek/se-mac-roman.def +texmf-dist/tex/generic/oberdiek/se-nextstep.def +texmf-dist/tex/generic/oberdiek/se-pdfdoc.def +texmf-dist/tex/generic/oberdiek/se-utf16le.def +texmf-dist/tex/generic/oberdiek/se-utf32be.def +texmf-dist/tex/generic/oberdiek/se-utf32le.def +texmf-dist/tex/generic/oberdiek/se-utf8.def +texmf-dist/tex/generic/oberdiek/setouterhbox.sty +texmf-dist/tex/generic/oberdiek/soulutf8.sty +texmf-dist/tex/generic/oberdiek/stringenc.sty +texmf-dist/tex/generic/oberdiek/telprint.sty +texmf-dist/tex/generic/oberdiek/thepdfnumber.sty +texmf-dist/tex/generic/oberdiek/uniquecounter.sty +texmf-dist/tex/latex/oberdiek/accsupp-dvipdfm.def +texmf-dist/tex/latex/oberdiek/accsupp-dvips.def +texmf-dist/tex/latex/oberdiek/accsupp-pdftex.def +texmf-dist/tex/latex/oberdiek/accsupp.sty +texmf-dist/tex/latex/oberdiek/aliascnt.sty +texmf-dist/tex/latex/oberdiek/askinclude.sty +texmf-dist/tex/latex/oberdiek/atenddvi.sty +texmf-dist/tex/latex/oberdiek/atfi-dvipdfmx.def +texmf-dist/tex/latex/oberdiek/atfi-dvips.def +texmf-dist/tex/latex/oberdiek/atfi-pdftex.def +texmf-dist/tex/latex/oberdiek/attachfile2.sty +texmf-dist/tex/latex/oberdiek/atveryend.sty +texmf-dist/tex/latex/oberdiek/auxhook.sty +texmf-dist/tex/latex/oberdiek/bkm-dvipdfm.def +texmf-dist/tex/latex/oberdiek/bkm-dvips.def +texmf-dist/tex/latex/oberdiek/bkm-dvipsone.def +texmf-dist/tex/latex/oberdiek/bkm-pdftex.def +texmf-dist/tex/latex/oberdiek/bkm-textures.def +texmf-dist/tex/latex/oberdiek/bkm-vtex.def +texmf-dist/tex/latex/oberdiek/bmpsize-base.sty +texmf-dist/tex/latex/oberdiek/bmpsize-dvipdfm.def +texmf-dist/tex/latex/oberdiek/bmpsize-dvipdfmx.def +texmf-dist/tex/latex/oberdiek/bmpsize-dvips.def +texmf-dist/tex/latex/oberdiek/bmpsize-test.tex +texmf-dist/tex/latex/oberdiek/bmpsize.sty +texmf-dist/tex/latex/oberdiek/bookmark.sty +texmf-dist/tex/latex/oberdiek/centernot.sty +texmf-dist/tex/latex/oberdiek/chemarr.sty +texmf-dist/tex/latex/oberdiek/classlist.sty +texmf-dist/tex/latex/oberdiek/colonequals.sty +texmf-dist/tex/latex/oberdiek/dtx-attach.sty +texmf-dist/tex/latex/oberdiek/dvipscol.sty +texmf-dist/tex/latex/oberdiek/enparen.sty +texmf-dist/tex/latex/oberdiek/epstopdf-base.sty +texmf-dist/tex/latex/oberdiek/epstopdf.sty +texmf-dist/tex/latex/oberdiek/flags.sty +texmf-dist/tex/latex/oberdiek/grfext.sty +texmf-dist/tex/latex/oberdiek/grffile.sty +texmf-dist/tex/latex/oberdiek/holtxdoc.sty +texmf-dist/tex/latex/oberdiek/hopatch.sty +texmf-dist/tex/latex/oberdiek/hycolor.sty +texmf-dist/tex/latex/oberdiek/hypbmsec.sty +texmf-dist/tex/latex/oberdiek/hypcap.sty +texmf-dist/tex/latex/oberdiek/hypdestopt.sty +texmf-dist/tex/latex/oberdiek/hypdoc.sty +texmf-dist/tex/latex/oberdiek/hypgotoe.sty +texmf-dist/tex/latex/oberdiek/ifdraft.sty +texmf-dist/tex/latex/oberdiek/inputenx.sty +texmf-dist/tex/latex/oberdiek/ix-alias.def +texmf-dist/tex/latex/oberdiek/ix-math.def +texmf-dist/tex/latex/oberdiek/ix-name.def +texmf-dist/tex/latex/oberdiek/ix-slot.def +texmf-dist/tex/latex/oberdiek/ix-uc.def +texmf-dist/tex/latex/oberdiek/ix-utf8enc.dfu +texmf-dist/tex/latex/oberdiek/kvoptions-patch.sty +texmf-dist/tex/latex/oberdiek/kvoptions.sty +texmf-dist/tex/latex/oberdiek/letltxmacro.sty +texmf-dist/tex/latex/oberdiek/listingsutf8.sty +texmf-dist/tex/latex/oberdiek/luacolor.sty +texmf-dist/tex/latex/oberdiek/makerobust.sty +texmf-dist/tex/latex/oberdiek/pagegrid.sty +texmf-dist/tex/latex/oberdiek/pagesel.sty +texmf-dist/tex/latex/oberdiek/pdfcolfoot.sty +texmf-dist/tex/latex/oberdiek/pdfcolmk.sty +texmf-dist/tex/latex/oberdiek/pdfcolparallel.sty +texmf-dist/tex/latex/oberdiek/pdfcolparcolumns.sty +texmf-dist/tex/latex/oberdiek/pdflscape.sty +texmf-dist/tex/latex/oberdiek/picture.sty +texmf-dist/tex/latex/oberdiek/pmboxdraw.sty +texmf-dist/tex/latex/oberdiek/pmboxdrawenc.dfu +texmf-dist/tex/latex/oberdiek/refcount.sty +texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty +texmf-dist/tex/latex/oberdiek/resizegather.sty +texmf-dist/tex/latex/oberdiek/scrindex.sty +texmf-dist/tex/latex/oberdiek/selinput.sty +texmf-dist/tex/latex/oberdiek/settobox.sty +texmf-dist/tex/latex/oberdiek/stackrel.sty +texmf-dist/tex/latex/oberdiek/stampinclude.sty +texmf-dist/tex/latex/oberdiek/tabularht.sty +texmf-dist/tex/latex/oberdiek/tabularkv.sty +texmf-dist/tex/latex/oberdiek/transparent.sty +texmf-dist/tex/latex/oberdiek/twoopt.sty +texmf-dist/tex/latex/oberdiek/x-ascii.def +texmf-dist/tex/latex/oberdiek/x-atarist.def +texmf-dist/tex/latex/oberdiek/x-cp1250.def +texmf-dist/tex/latex/oberdiek/x-cp1251.def +texmf-dist/tex/latex/oberdiek/x-cp1252.def +texmf-dist/tex/latex/oberdiek/x-cp1255.def +texmf-dist/tex/latex/oberdiek/x-cp1257.def +texmf-dist/tex/latex/oberdiek/x-cp437.def +texmf-dist/tex/latex/oberdiek/x-cp850.def +texmf-dist/tex/latex/oberdiek/x-cp852.def +texmf-dist/tex/latex/oberdiek/x-cp855.def +texmf-dist/tex/latex/oberdiek/x-cp858.def +texmf-dist/tex/latex/oberdiek/x-cp865.def +texmf-dist/tex/latex/oberdiek/x-cp866.def +texmf-dist/tex/latex/oberdiek/x-dec-mcs.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-1.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-10.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-13.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-14.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-15.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-16.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-2.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-3.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-4.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-5.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-8.def +texmf-dist/tex/latex/oberdiek/x-iso-8859-9.def +texmf-dist/tex/latex/oberdiek/x-koi8-r.def +texmf-dist/tex/latex/oberdiek/x-mac-centeuro.def +texmf-dist/tex/latex/oberdiek/x-mac-cyrillic.def +texmf-dist/tex/latex/oberdiek/x-mac-roman.def +texmf-dist/tex/latex/oberdiek/x-nextstep.def +texmf-dist/tex/latex/oberdiek/x-verbatim.def +texmf-dist/tex/latex/oberdiek/xcolor-patch.sty +texmf-dist/tex/latex/oberdiek/zref-abspage.sty +texmf-dist/tex/latex/oberdiek/zref-abspos.sty +texmf-dist/tex/latex/oberdiek/zref-base.sty +texmf-dist/tex/latex/oberdiek/zref-counter.sty +texmf-dist/tex/latex/oberdiek/zref-dotfill.sty +texmf-dist/tex/latex/oberdiek/zref-env.sty +texmf-dist/tex/latex/oberdiek/zref-hyperref.sty +texmf-dist/tex/latex/oberdiek/zref-lastpage.sty +texmf-dist/tex/latex/oberdiek/zref-marks.sty +texmf-dist/tex/latex/oberdiek/zref-nextpage.sty +texmf-dist/tex/latex/oberdiek/zref-pageattr.sty +texmf-dist/tex/latex/oberdiek/zref-pagelayout.sty +texmf-dist/tex/latex/oberdiek/zref-perpage.sty +texmf-dist/tex/latex/oberdiek/zref-runs.sty +texmf-dist/tex/latex/oberdiek/zref-savepos.sty +texmf-dist/tex/latex/oberdiek/zref-thepage.sty +texmf-dist/tex/latex/oberdiek/zref-titleref.sty +texmf-dist/tex/latex/oberdiek/zref-totpages.sty +texmf-dist/tex/latex/oberdiek/zref-user.sty +texmf-dist/tex/latex/oberdiek/zref-xr.sty +texmf-dist/tex/latex/oberdiek/zref.sty +texmf-dist/tex/lualatex/odsfile/odsfile.lua +texmf-dist/tex/lualatex/odsfile/odsfile.sty +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 +texmf-dist/scripts/placeat/placeat.lua +texmf-dist/tex/lualatex/placeat/placeat.sty +texmf-dist/makeindex/plain/plaintex.ist +texmf-dist/tex/plain/base/fontchart.tex +texmf-dist/tex/plain/base/gkpmac.tex +texmf-dist/tex/plain/base/letter.tex +texmf-dist/tex/plain/base/list-latin.tex +texmf-dist/tex/plain/base/list.tex +texmf-dist/tex/plain/base/llist.tex +texmf-dist/tex/plain/base/mptmac.tex +texmf-dist/tex/plain/base/picmac.tex +texmf-dist/tex/plain/base/plain.tex +texmf-dist/tex/plain/base/wlist.tex +texmf-dist/tex/plain/config/aleph.ini +texmf-dist/tex/plain/config/bplain.ini +texmf-dist/tex/plain/config/etex.ini +texmf-dist/tex/plain/config/omega.ini +texmf-dist/tex/plain/config/pdfbplain.ini +texmf-dist/tex/plain/config/pdfetex.ini +texmf-dist/tex/plain/config/pdftexmagfix.tex +texmf-dist/tex/plain/config/tex.ini +texmf-dist/tex/plain/config/unicode-letters.def +texmf-dist/fonts/map/dvips/pslatex/pcrr8rn.map +texmf-dist/fonts/tfm/public/pslatex/pcrr7tn.tfm +texmf-dist/fonts/tfm/public/pslatex/pcrr8rn.tfm +texmf-dist/fonts/tfm/public/pslatex/pcrr8tn.tfm +texmf-dist/fonts/vf/public/pslatex/pcrr7tn.vf +texmf-dist/fonts/vf/public/pslatex/pcrr8tn.vf +texmf-dist/tex/latex/pslatex/pslatex.sty +texmf-dist/fonts/map/dvips/psnfss/charter.map +texmf-dist/fonts/map/dvips/psnfss/fpls.map +texmf-dist/fonts/map/dvips/psnfss/pazo.map +texmf-dist/fonts/map/dvips/psnfss/psnfss.map +texmf-dist/fonts/map/dvips/psnfss/utopia.map +texmf-dist/tex/latex/psnfss/8rbch.fd +texmf-dist/tex/latex/psnfss/8rpag.fd +texmf-dist/tex/latex/psnfss/8rpbk.fd +texmf-dist/tex/latex/psnfss/8rpcr.fd +texmf-dist/tex/latex/psnfss/8rphv.fd +texmf-dist/tex/latex/psnfss/8rpnc.fd +texmf-dist/tex/latex/psnfss/8rppl.fd +texmf-dist/tex/latex/psnfss/8rptm.fd +texmf-dist/tex/latex/psnfss/8rput.fd +texmf-dist/tex/latex/psnfss/8rpzc.fd +texmf-dist/tex/latex/psnfss/avant.sty +texmf-dist/tex/latex/psnfss/bookman.sty +texmf-dist/tex/latex/psnfss/chancery.sty +texmf-dist/tex/latex/psnfss/charter.sty +texmf-dist/tex/latex/psnfss/courier.sty +texmf-dist/tex/latex/psnfss/helvet.sty +texmf-dist/tex/latex/psnfss/mathpazo.sty +texmf-dist/tex/latex/psnfss/mathpple.sty +texmf-dist/tex/latex/psnfss/mathptm.sty +texmf-dist/tex/latex/psnfss/mathptmx.sty +texmf-dist/tex/latex/psnfss/newcent.sty +texmf-dist/tex/latex/psnfss/omlbch.fd +texmf-dist/tex/latex/psnfss/omlpag.fd +texmf-dist/tex/latex/psnfss/omlpbk.fd +texmf-dist/tex/latex/psnfss/omlpcr.fd +texmf-dist/tex/latex/psnfss/omlphv.fd +texmf-dist/tex/latex/psnfss/omlpnc.fd +texmf-dist/tex/latex/psnfss/omlppl.fd +texmf-dist/tex/latex/psnfss/omlptm.fd +texmf-dist/tex/latex/psnfss/omlptmcm.fd +texmf-dist/tex/latex/psnfss/omlput.fd +texmf-dist/tex/latex/psnfss/omlpzc.fd +texmf-dist/tex/latex/psnfss/omlzplm.fd +texmf-dist/tex/latex/psnfss/omlzpple.fd +texmf-dist/tex/latex/psnfss/omlztmcm.fd +texmf-dist/tex/latex/psnfss/omsbch.fd +texmf-dist/tex/latex/psnfss/omspag.fd +texmf-dist/tex/latex/psnfss/omspbk.fd +texmf-dist/tex/latex/psnfss/omspcr.fd +texmf-dist/tex/latex/psnfss/omsphv.fd +texmf-dist/tex/latex/psnfss/omspnc.fd +texmf-dist/tex/latex/psnfss/omsppl.fd +texmf-dist/tex/latex/psnfss/omsptm.fd +texmf-dist/tex/latex/psnfss/omsput.fd +texmf-dist/tex/latex/psnfss/omspzc.fd +texmf-dist/tex/latex/psnfss/omspzccm.fd +texmf-dist/tex/latex/psnfss/omszplm.fd +texmf-dist/tex/latex/psnfss/omszpple.fd +texmf-dist/tex/latex/psnfss/omsztmcm.fd +texmf-dist/tex/latex/psnfss/omxpsycm.fd +texmf-dist/tex/latex/psnfss/omxzplm.fd +texmf-dist/tex/latex/psnfss/omxzpple.fd +texmf-dist/tex/latex/psnfss/omxztmcm.fd +texmf-dist/tex/latex/psnfss/ot1bch.fd +texmf-dist/tex/latex/psnfss/ot1pag.fd +texmf-dist/tex/latex/psnfss/ot1pbk.fd +texmf-dist/tex/latex/psnfss/ot1pcr.fd +texmf-dist/tex/latex/psnfss/ot1phv.fd +texmf-dist/tex/latex/psnfss/ot1pnc.fd +texmf-dist/tex/latex/psnfss/ot1ppl.fd +texmf-dist/tex/latex/psnfss/ot1pplj.fd +texmf-dist/tex/latex/psnfss/ot1pplx.fd +texmf-dist/tex/latex/psnfss/ot1ptm.fd +texmf-dist/tex/latex/psnfss/ot1ptmcm.fd +texmf-dist/tex/latex/psnfss/ot1put.fd +texmf-dist/tex/latex/psnfss/ot1pzc.fd +texmf-dist/tex/latex/psnfss/ot1zplm.fd +texmf-dist/tex/latex/psnfss/ot1zpple.fd +texmf-dist/tex/latex/psnfss/ot1ztmcm.fd +texmf-dist/tex/latex/psnfss/palatino.sty +texmf-dist/tex/latex/psnfss/pifont.sty +texmf-dist/tex/latex/psnfss/t1bch.fd +texmf-dist/tex/latex/psnfss/t1pag.fd +texmf-dist/tex/latex/psnfss/t1pbk.fd +texmf-dist/tex/latex/psnfss/t1pcr.fd +texmf-dist/tex/latex/psnfss/t1phv.fd +texmf-dist/tex/latex/psnfss/t1pnc.fd +texmf-dist/tex/latex/psnfss/t1ppl.fd +texmf-dist/tex/latex/psnfss/t1pplj.fd +texmf-dist/tex/latex/psnfss/t1pplx.fd +texmf-dist/tex/latex/psnfss/t1ptm.fd +texmf-dist/tex/latex/psnfss/t1put.fd +texmf-dist/tex/latex/psnfss/t1pzc.fd +texmf-dist/tex/latex/psnfss/times.sty +texmf-dist/tex/latex/psnfss/ts1bch.fd +texmf-dist/tex/latex/psnfss/ts1pag.fd +texmf-dist/tex/latex/psnfss/ts1pbk.fd +texmf-dist/tex/latex/psnfss/ts1pcr.fd +texmf-dist/tex/latex/psnfss/ts1phv.fd +texmf-dist/tex/latex/psnfss/ts1pnc.fd +texmf-dist/tex/latex/psnfss/ts1ppl.fd +texmf-dist/tex/latex/psnfss/ts1pplj.fd +texmf-dist/tex/latex/psnfss/ts1pplx.fd +texmf-dist/tex/latex/psnfss/ts1ptm.fd +texmf-dist/tex/latex/psnfss/ts1put.fd +texmf-dist/tex/latex/psnfss/ts1pzc.fd +texmf-dist/tex/latex/psnfss/ufplm.fd +texmf-dist/tex/latex/psnfss/ufplmbb.fd +texmf-dist/tex/latex/psnfss/upsy.fd +texmf-dist/tex/latex/psnfss/upzd.fd +texmf-dist/tex/latex/psnfss/utopia.sty +texmf-dist/dvips/pspicture/pspicture.ps +texmf-dist/tex/latex/pspicture/pspicture.sty +texmf-dist/tex/lualatex/selnolig/selnolig-english-hyphex.sty +texmf-dist/tex/lualatex/selnolig/selnolig-english-patterns.sty +texmf-dist/tex/lualatex/selnolig/selnolig-german-hyphex.sty +texmf-dist/tex/lualatex/selnolig/selnolig-german-patterns.sty +texmf-dist/tex/lualatex/selnolig/selnolig.lua +texmf-dist/tex/lualatex/selnolig/selnolig.sty +texmf-dist/tex/lualatex/showhyphens/showhyphens.sty +texmf-dist/scripts/spelling/spelling-main.lua +texmf-dist/scripts/spelling/spelling-recurse.lua +texmf-dist/scripts/spelling/spelling-stage-1.lua +texmf-dist/scripts/spelling/spelling-stage-2.lua +texmf-dist/scripts/spelling/spelling-stage-3.lua +texmf-dist/scripts/spelling/spelling-stage-4.lua +texmf-dist/tex/luatex/spelling/spelling.sty +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/allcm.sh +texmf-dist/scripts/texlive/allneeded.sh +texmf-dist/scripts/texlive/dvi2fax.sh +texmf-dist/scripts/texlive/dvired.sh +texmf-dist/scripts/texlive/fmtutil-sys.sh +texmf-dist/scripts/texlive/fmtutil.pl +texmf-dist/scripts/texlive/kpsetool.sh +texmf-dist/scripts/texlive/kpsewhere.sh +texmf-dist/scripts/texlive/mktexlsr.pl +texmf-dist/scripts/texlive/texconfig-dialog.sh +texmf-dist/scripts/texlive/texconfig-sys.sh +texmf-dist/scripts/texlive/texlinks.sh +texmf-dist/scripts/texlive/updmap-sys.sh +texmf-dist/scripts/texlive/updmap.pl +texmf-dist/web2c/updmap.cfg +texmf-dist/tex/generic/tex-ini-files/dvilualatex.ini +texmf-dist/tex/generic/tex-ini-files/dviluatex.ini +texmf-dist/tex/generic/tex-ini-files/lualatex.ini +texmf-dist/tex/generic/tex-ini-files/luatex.ini +texmf-dist/tex/generic/tex-ini-files/luatexconfig.tex +texmf-dist/tex/generic/tex-ini-files/pdftexconfig.tex +texmf-dist/tex/generic/tex-ini-files/xelatex.ini +texmf-dist/tex/generic/tex-ini-files/xetex.ini +texmf-dist/scripts/texlive/texconfig.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 +texmf-dist/scripts/texlive/tlmgr.pl +texmf-dist/scripts/texlive/tlmgrgui.pl +texmf-dist/scripts/texlive/uninstall-win32.pl +texmf-dist/web2c/fmtutil-hdr.cnf +texmf-dist/web2c/updmap-hdr.cfg +texmf-dist/tex/latex/tools/.tex +texmf-dist/tex/latex/tools/afterpage.sty +texmf-dist/tex/latex/tools/array.sty +texmf-dist/tex/latex/tools/bm.sty +texmf-dist/tex/latex/tools/calc.sty +texmf-dist/tex/latex/tools/dcolumn.sty +texmf-dist/tex/latex/tools/delarray.sty +texmf-dist/tex/latex/tools/e.tex +texmf-dist/tex/latex/tools/enumerate.sty +texmf-dist/tex/latex/tools/fontsmpl.sty +texmf-dist/tex/latex/tools/fontsmpl.tex +texmf-dist/tex/latex/tools/ftnright.sty +texmf-dist/tex/latex/tools/h.tex +texmf-dist/tex/latex/tools/hhline.sty +texmf-dist/tex/latex/tools/indentfirst.sty +texmf-dist/tex/latex/tools/layout.sty +texmf-dist/tex/latex/tools/longtable.sty +texmf-dist/tex/latex/tools/multicol.sty +texmf-dist/tex/latex/tools/q.tex +texmf-dist/tex/latex/tools/r.tex +texmf-dist/tex/latex/tools/rawfonts.sty +texmf-dist/tex/latex/tools/s.tex +texmf-dist/tex/latex/tools/shellesc.sty +texmf-dist/tex/latex/tools/showkeys.sty +texmf-dist/tex/latex/tools/somedefs.sty +texmf-dist/tex/latex/tools/tabularx.sty +texmf-dist/tex/latex/tools/thb.sty +texmf-dist/tex/latex/tools/thc.sty +texmf-dist/tex/latex/tools/thcb.sty +texmf-dist/tex/latex/tools/theorem.sty +texmf-dist/tex/latex/tools/thm.sty +texmf-dist/tex/latex/tools/thmb.sty +texmf-dist/tex/latex/tools/thp.sty +texmf-dist/tex/latex/tools/trace.sty +texmf-dist/tex/latex/tools/varioref.sty +texmf-dist/tex/latex/tools/verbatim.sty +texmf-dist/tex/latex/tools/verbtest.tex +texmf-dist/tex/latex/tools/x.tex +texmf-dist/tex/latex/tools/xr.sty +texmf-dist/tex/latex/tools/xspace.sty +texmf-dist/tex/latex/ucharcat/ucharcat.sty +texmf-dist/tex/generic/unicode-data/CaseFolding.txt +texmf-dist/tex/generic/unicode-data/EastAsianWidth.txt +texmf-dist/tex/generic/unicode-data/LineBreak.txt +texmf-dist/tex/generic/unicode-data/MathClass.txt +texmf-dist/tex/generic/unicode-data/SpecialCasing.txt +texmf-dist/tex/generic/unicode-data/UnicodeData.txt +texmf-dist/tex/generic/unicode-data/load-unicode-data.tex +texmf-dist/tex/generic/unicode-data/load-unicode-math-classes.tex +texmf-dist/tex/generic/unicode-data/load-unicode-xetex-classes.tex +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/tex/latex/url/url.sty +texmf-dist/dvips/xdvi/config.xdvi +texmf-dist/xdvi/XDvi +texmf-dist/xdvi/pixmap/toolbar.xpm +texmf-dist/xdvi/pixmap/toolbar2.xpm diff --git a/packages/texlive/texlive.tlpdb b/packages/texlive/texlive.tlpdb new file mode 100644 index 00000000..7376167e --- /dev/null +++ b/packages/texlive/texlive.tlpdb @@ -0,0 +1,4959 @@ +name 00texlive.config +category Package +depend minrelease/2016 +depend release/2016 + +name 00texlive.installation +category TLCore +depend opt_location:http://ftp.acc.umu.se/mirror/CTAN/systems/texlive/tlnet +depend opt_autobackup:1 +depend opt_backupdir:tlpkg/backups +depend opt_create_formats:1 +depend opt_desktop_integration:0 +depend opt_file_assocs:0 +depend opt_post_code:1 +depend opt_sys_bin:/data/data/com.termux/files/usr/bin +depend opt_sys_info:/data/data/com.termux/files/usr/share/info +depend opt_sys_man:/data/data/com.termux/files/usr/share/man +depend opt_install_docfiles:0 +depend opt_install_srcfiles:0 +depend opt_w32_multi_user:0 +depend setting_available_architectures:custom + +name ae +category Package +revision 15878 +shortdesc Virtual fonts for T1 encoded CMR-fonts +longdesc A set of virtual fonts which emulates T1 coded fonts using the +longdesc standard CM fonts. The package name, AE fonts, supposedly +longdesc stands for "Almost European". The main use of the package 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 57364 +containerchecksum bde32493e7a877ae38c48383cbaf93b8324329044d4c736e36c93542fcdf5184580dc46c3a0764ae91a20b2735a5a26a35058cde9a9e8b9ff3a636e9a33d0887 +doccontainersize 7732 +doccontainerchecksum 42b894211dd2157b950d1acf2391a41d64780d175d6651573bbe047ee10fd45a1f2bdf75e4370caf375b66b882eb9e7487049ecbdb94a1a921e8d135ea05f834 +srccontainersize 19988 +srccontainerchecksum 1629b88b7b27d552c5274fd9ea8e97ae9dbbd3e3bf0675182b7a6e29cb0eb4cbe17de531586bc3a7f9b515455988760d94b66271c64c2e252f0f86a5f2ef057d +runfiles size=157 + texmf-dist/fonts/tfm/public/ae/aeb10.tfm + texmf-dist/fonts/tfm/public/ae/aebx10.tfm + texmf-dist/fonts/tfm/public/ae/aebx12.tfm + texmf-dist/fonts/tfm/public/ae/aebx5.tfm + texmf-dist/fonts/tfm/public/ae/aebx6.tfm + texmf-dist/fonts/tfm/public/ae/aebx7.tfm + texmf-dist/fonts/tfm/public/ae/aebx8.tfm + texmf-dist/fonts/tfm/public/ae/aebx9.tfm + texmf-dist/fonts/tfm/public/ae/aebxsl10.tfm + texmf-dist/fonts/tfm/public/ae/aebxti10.tfm + texmf-dist/fonts/tfm/public/ae/aecsc10.tfm + texmf-dist/fonts/tfm/public/ae/aeitt10.tfm + texmf-dist/fonts/tfm/public/ae/aer10.tfm + texmf-dist/fonts/tfm/public/ae/aer12.tfm + texmf-dist/fonts/tfm/public/ae/aer17.tfm + texmf-dist/fonts/tfm/public/ae/aer5.tfm + texmf-dist/fonts/tfm/public/ae/aer6.tfm + texmf-dist/fonts/tfm/public/ae/aer7.tfm + texmf-dist/fonts/tfm/public/ae/aer8.tfm + texmf-dist/fonts/tfm/public/ae/aer9.tfm + texmf-dist/fonts/tfm/public/ae/aesl10.tfm + texmf-dist/fonts/tfm/public/ae/aesl12.tfm + texmf-dist/fonts/tfm/public/ae/aesl8.tfm + texmf-dist/fonts/tfm/public/ae/aesl9.tfm + texmf-dist/fonts/tfm/public/ae/aesltt10.tfm + texmf-dist/fonts/tfm/public/ae/aess10.tfm + texmf-dist/fonts/tfm/public/ae/aess12.tfm + texmf-dist/fonts/tfm/public/ae/aess17.tfm + texmf-dist/fonts/tfm/public/ae/aess8.tfm + texmf-dist/fonts/tfm/public/ae/aess9.tfm + texmf-dist/fonts/tfm/public/ae/aessbx10.tfm + texmf-dist/fonts/tfm/public/ae/aessdc10.tfm + texmf-dist/fonts/tfm/public/ae/aessi10.tfm + texmf-dist/fonts/tfm/public/ae/aessi12.tfm + texmf-dist/fonts/tfm/public/ae/aessi17.tfm + texmf-dist/fonts/tfm/public/ae/aessi8.tfm + texmf-dist/fonts/tfm/public/ae/aessi9.tfm + texmf-dist/fonts/tfm/public/ae/aetcsc10.tfm + texmf-dist/fonts/tfm/public/ae/aeti10.tfm + texmf-dist/fonts/tfm/public/ae/aeti12.tfm + texmf-dist/fonts/tfm/public/ae/aeti7.tfm + texmf-dist/fonts/tfm/public/ae/aeti8.tfm + texmf-dist/fonts/tfm/public/ae/aeti9.tfm + texmf-dist/fonts/tfm/public/ae/aett10.tfm + texmf-dist/fonts/tfm/public/ae/aett12.tfm + texmf-dist/fonts/tfm/public/ae/aett8.tfm + texmf-dist/fonts/tfm/public/ae/aett9.tfm + texmf-dist/fonts/tfm/public/ae/laess8.tfm + texmf-dist/fonts/tfm/public/ae/laessb8.tfm + texmf-dist/fonts/tfm/public/ae/laessi8.tfm + texmf-dist/fonts/vf/public/ae/aeb10.vf + texmf-dist/fonts/vf/public/ae/aebx10.vf + texmf-dist/fonts/vf/public/ae/aebx12.vf + texmf-dist/fonts/vf/public/ae/aebx5.vf + texmf-dist/fonts/vf/public/ae/aebx6.vf + texmf-dist/fonts/vf/public/ae/aebx7.vf + texmf-dist/fonts/vf/public/ae/aebx8.vf + texmf-dist/fonts/vf/public/ae/aebx9.vf + texmf-dist/fonts/vf/public/ae/aebxsl10.vf + texmf-dist/fonts/vf/public/ae/aebxti10.vf + texmf-dist/fonts/vf/public/ae/aecsc10.vf + texmf-dist/fonts/vf/public/ae/aeitt10.vf + texmf-dist/fonts/vf/public/ae/aer10.vf + texmf-dist/fonts/vf/public/ae/aer12.vf + texmf-dist/fonts/vf/public/ae/aer17.vf + texmf-dist/fonts/vf/public/ae/aer5.vf + texmf-dist/fonts/vf/public/ae/aer6.vf + texmf-dist/fonts/vf/public/ae/aer7.vf + texmf-dist/fonts/vf/public/ae/aer8.vf + texmf-dist/fonts/vf/public/ae/aer9.vf + texmf-dist/fonts/vf/public/ae/aesl10.vf + texmf-dist/fonts/vf/public/ae/aesl12.vf + texmf-dist/fonts/vf/public/ae/aesl8.vf + texmf-dist/fonts/vf/public/ae/aesl9.vf + texmf-dist/fonts/vf/public/ae/aesltt10.vf + texmf-dist/fonts/vf/public/ae/aess10.vf + texmf-dist/fonts/vf/public/ae/aess12.vf + texmf-dist/fonts/vf/public/ae/aess17.vf + texmf-dist/fonts/vf/public/ae/aess8.vf + texmf-dist/fonts/vf/public/ae/aess9.vf + texmf-dist/fonts/vf/public/ae/aessbx10.vf + texmf-dist/fonts/vf/public/ae/aessdc10.vf + texmf-dist/fonts/vf/public/ae/aessi10.vf + texmf-dist/fonts/vf/public/ae/aessi12.vf + texmf-dist/fonts/vf/public/ae/aessi17.vf + texmf-dist/fonts/vf/public/ae/aessi8.vf + texmf-dist/fonts/vf/public/ae/aessi9.vf + texmf-dist/fonts/vf/public/ae/aetcsc10.vf + texmf-dist/fonts/vf/public/ae/aeti10.vf + texmf-dist/fonts/vf/public/ae/aeti12.vf + texmf-dist/fonts/vf/public/ae/aeti7.vf + texmf-dist/fonts/vf/public/ae/aeti8.vf + texmf-dist/fonts/vf/public/ae/aeti9.vf + texmf-dist/fonts/vf/public/ae/aett10.vf + texmf-dist/fonts/vf/public/ae/aett12.vf + texmf-dist/fonts/vf/public/ae/aett8.vf + texmf-dist/fonts/vf/public/ae/aett9.vf + texmf-dist/fonts/vf/public/ae/laess8.vf + texmf-dist/fonts/vf/public/ae/laessb8.vf + texmf-dist/fonts/vf/public/ae/laessi8.vf + texmf-dist/tex/latex/ae/ae.sty + texmf-dist/tex/latex/ae/aecompl.sty + texmf-dist/tex/latex/ae/omlaer.fd + texmf-dist/tex/latex/ae/omsaer.fd + texmf-dist/tex/latex/ae/ot1aer.fd + texmf-dist/tex/latex/ae/ot1aess.fd + texmf-dist/tex/latex/ae/ot1aett.fd + texmf-dist/tex/latex/ae/ot1laess.fd + texmf-dist/tex/latex/ae/ot1laett.fd + texmf-dist/tex/latex/ae/t1aer.fd + texmf-dist/tex/latex/ae/t1aess.fd + texmf-dist/tex/latex/ae/t1aett.fd + texmf-dist/tex/latex/ae/t1laess.fd + texmf-dist/tex/latex/ae/t1laett.fd +catalogue-also zefonts aeguill +catalogue-ctan /fonts/ae +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics font font-virtual font-t1enc +catalogue-version 1.4 + +name amscls +category Package +revision 36804 +shortdesc AMS document classes for LaTeX +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. The +longdesc material is made available as part of the AMS-LaTeX +longdesc distribution. +containersize 32752 +containerchecksum c97a4e2b89bd37a2f39ed4714af8cae6f58771aed352209f341dccb05fe18626d5bf5a2321c3f30ae9082ae183d7ab41cdd4751916dc1c2f72e938637627e86f +doccontainersize 1186080 +doccontainerchecksum 4079565e6f8edda29531e82dce249bd14c3e713c68a7ef104734dfce1c05c8d5baf57fbf934cd4e226f75d51529efed2d204cbdddf0e32bb2ad6f47a5a72b7ba +srccontainersize 90148 +srccontainerchecksum 026556d11bcb45fa6a0db52e58da30c5a56960f1ae83433fe04ea865333a8b8f1ec8125cb450c0f3851528db84926f924e42916fb6ee2339749bb033832e0a38 +runfiles size=76 + texmf-dist/bibtex/bst/amscls/amsalpha.bst + texmf-dist/bibtex/bst/amscls/amsplain.bst + texmf-dist/tex/latex/amscls/amsart.cls + texmf-dist/tex/latex/amscls/amsbook.cls + texmf-dist/tex/latex/amscls/amsbooka.sty + texmf-dist/tex/latex/amscls/amsdtx.cls + texmf-dist/tex/latex/amscls/amsldoc.cls + texmf-dist/tex/latex/amscls/amsmidx.sty + texmf-dist/tex/latex/amscls/amsproc.cls + texmf-dist/tex/latex/amscls/amsthm.sty + texmf-dist/tex/latex/amscls/upref.sty +catalogue-also amslatex +catalogue-ctan /macros/latex/required/amscls +catalogue-date 2016-03-01 13:36:50 +0100 +catalogue-license lppl1.3 +catalogue-topics class maths + +name amsfonts +category Package +revision 29208 +shortdesc TeX fonts from the American Mathematical Society +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. Plain TeX and +longdesc LaTeX macros for using the fonts are provided. +execute addMixedMap cm.map +execute addMixedMap cmextra.map +execute addMixedMap cyrillic.map +execute addMap euler.map +execute addMixedMap latxfont.map +execute addMixedMap symbols.map +containersize 3626184 +containerchecksum fb222c26c9d0fed048a82b4e83315354beeb56a729810365376ddf1208047f613a738d8dbf32a5079991bbffa9345590632f6feb7f29e840b31a5c07f2ea2574 +doccontainersize 1162544 +doccontainerchecksum f78fb71d9b8a42964edb8842487bd321a0f236a1bb40873a266b29ad35e0e5e381936afccf8453ab02dc933f0cd886b668d736f97b7fb087846779eafdc5694a +srccontainersize 49156 +srccontainerchecksum 667bec8dc943a00b3e5c271bd9b3b60d0c39e6b0eacd816704087d16fc9886ba85a53ca998c0c94a3e675fa9c6074b37d06058bb9ba841db65d53755e93e95b2 +runfiles size=1879 + texmf-dist/fonts/afm/public/amsfonts/cm/cmb10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmbsy10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmbx10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmbx12.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmbx5.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmbx6.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmbx7.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmbx8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmbx9.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmbxsl10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmbxti10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmcsc10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmdunh10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmex10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmff10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmfi10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmfib8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cminch.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmitt10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmmi10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmmi12.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmmi5.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmmi6.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmmi7.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmmi8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmmi9.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmmib10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmr10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmr12.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmr17.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmr5.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmr6.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmr7.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmr8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmr9.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsl10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsl12.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsl8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsl9.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsltt10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmss10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmss12.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmss17.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmss8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmss9.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmssbx10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmssdc10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmssi10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmssi12.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmssi17.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmssi8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmssi9.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmssq8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmssqi8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsy10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsy5.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsy6.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsy7.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsy8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmsy9.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmtcsc10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmtex10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmtex8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmtex9.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmti10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmti12.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmti7.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmti8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmti9.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmtt10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmtt12.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmtt8.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmtt9.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmu10.afm + texmf-dist/fonts/afm/public/amsfonts/cm/cmvtt10.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmbsy5.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmbsy6.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmbsy7.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmbsy8.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmbsy9.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmcsc8.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmcsc9.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmex7.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmex8.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmex9.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmmib5.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmmib6.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmmib7.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmmib8.afm + texmf-dist/fonts/afm/public/amsfonts/cmextra/cmmib9.afm + texmf-dist/fonts/afm/public/amsfonts/cyrillic/wncyb10.afm + texmf-dist/fonts/afm/public/amsfonts/cyrillic/wncyi10.afm + texmf-dist/fonts/afm/public/amsfonts/cyrillic/wncyr10.afm + texmf-dist/fonts/afm/public/amsfonts/cyrillic/wncysc10.afm + texmf-dist/fonts/afm/public/amsfonts/cyrillic/wncyss10.afm + texmf-dist/fonts/afm/public/amsfonts/euler/euex10.afm + texmf-dist/fonts/afm/public/amsfonts/euler/euex7.afm + texmf-dist/fonts/afm/public/amsfonts/euler/euex8.afm + texmf-dist/fonts/afm/public/amsfonts/euler/euex9.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eufb10.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eufb5.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eufb7.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eufm10.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eufm5.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eufm7.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eurb10.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eurb5.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eurb7.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eurm10.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eurm5.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eurm7.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eusb10.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eusb5.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eusb7.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eusm10.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eusm5.afm + texmf-dist/fonts/afm/public/amsfonts/euler/eusm7.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy10.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy5.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy6.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy7.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy8.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lasy9.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lasyb10.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lcircle1.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lcirclew.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lcmss8.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lcmssb8.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/lcmssi8.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/line10.afm + texmf-dist/fonts/afm/public/amsfonts/latxfont/linew10.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msam10.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msam5.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msam6.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msam7.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msam8.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msam9.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msbm10.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msbm5.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msbm6.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msbm7.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msbm8.afm + texmf-dist/fonts/afm/public/amsfonts/symbols/msbm9.afm + texmf-dist/fonts/map/dvips/amsfonts/cm.map + texmf-dist/fonts/map/dvips/amsfonts/cmextra.map + texmf-dist/fonts/map/dvips/amsfonts/cyrillic.map + texmf-dist/fonts/map/dvips/amsfonts/euler.map + texmf-dist/fonts/map/dvips/amsfonts/latxfont.map + texmf-dist/fonts/map/dvips/amsfonts/symbols.map + texmf-dist/fonts/source/public/amsfonts/cmextra/cmbsy5.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmbsy6.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmbsy7.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmbsy8.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmbsy9.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmcsc8.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmcsc9.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmex7.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmex8.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmex9.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmmib5.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmmib6.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmmib7.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmmib8.mf + texmf-dist/fonts/source/public/amsfonts/cmextra/cmmib9.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrcsc.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrfont.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrilu.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrital.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrmax.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrpunc.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrspl.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrspu.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/cyrti.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/serb.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/serbspu.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb10.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb5.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb6.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb7.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb8.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyb9.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi10.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi5.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi6.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi7.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi8.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyi9.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr10.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr5.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr6.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr7.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr8.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyr9.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncysc10.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyss10.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyss8.mf + texmf-dist/fonts/source/public/amsfonts/cyrillic/wncyss9.mf + texmf-dist/fonts/source/public/amsfonts/dummy/dummy.mf + texmf-dist/fonts/source/public/amsfonts/symbols/amsya.mf + texmf-dist/fonts/source/public/amsfonts/symbols/amsyb.mf + texmf-dist/fonts/source/public/amsfonts/symbols/asymbols.mf + texmf-dist/fonts/source/public/amsfonts/symbols/bsymbols.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msam10.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msam5.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msam6.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msam7.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msam8.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msam9.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msbm10.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msbm5.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msbm6.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msbm7.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msbm8.mf + texmf-dist/fonts/source/public/amsfonts/symbols/msbm9.mf + texmf-dist/fonts/source/public/amsfonts/symbols/xbbase.mf + texmf-dist/fonts/source/public/amsfonts/symbols/xbbold.mf + texmf-dist/fonts/source/public/amsfonts/symbols/xbcaps.mf + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy5.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy6.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy7.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy8.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy9.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmcsc8.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmcsc9.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex8.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib5.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib6.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib7.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib8.tfm + texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib9.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb10.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb5.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb6.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb7.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb8.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyb9.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi10.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi5.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi6.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi7.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi8.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyi9.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr10.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr5.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr6.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr7.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr8.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyr9.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncysc10.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyss10.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyss8.tfm + texmf-dist/fonts/tfm/public/amsfonts/cyrillic/wncyss9.tfm + texmf-dist/fonts/tfm/public/amsfonts/dummy/dummy.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/euex10.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/euex7.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/euex8.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/euex9.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufb10.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufb5.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufb6.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufb7.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufb8.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufb9.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufm10.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufm5.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufm6.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufm7.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufm8.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eufm9.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurb10.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurb5.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurb6.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurb7.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurb8.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurb9.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurm10.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurm5.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurm6.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurm7.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurm8.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eurm9.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusb10.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusb5.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusb6.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusb7.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusb8.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusb9.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusm10.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusm5.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusm6.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusm7.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusm8.tfm + texmf-dist/fonts/tfm/public/amsfonts/euler/eusm9.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msam6.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msam8.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msam9.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm6.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm8.tfm + texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm9.tfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmb10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmb10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmbsy10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmbsy10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx5.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx5.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx6.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx6.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx7.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx7.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmbxsl10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmbxsl10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmbxti10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmbxti10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmcsc10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmcsc10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmdunh10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmdunh10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmff10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmff10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmfi10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmfi10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmfib8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmfib8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cminch.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cminch.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmitt10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmitt10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi12.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi12.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi5.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi5.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi9.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmmi9.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmmib10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmmib10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmr5.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmr5.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsl10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsl10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsl12.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsl12.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsl8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsl8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsl9.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsl9.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsltt10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsltt10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmss10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmss10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmss12.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmss12.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmss17.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmss17.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmss8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmss8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmss9.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmss9.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmssbx10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmssbx10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmssdc10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmssdc10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmssi10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmssi10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmssi12.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmssi12.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmssi17.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmssi17.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmssi8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmssi8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmssi9.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmssi9.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmssq8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmssq8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmssqi8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmssqi8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy5.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy5.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy6.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy6.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy9.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmsy9.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmtcsc10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmtcsc10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmtex10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmtex10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmtex8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmtex8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmtex9.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmtex9.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmti12.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmti12.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmti7.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmti7.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmti8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmti8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmti9.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmti9.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmtt12.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmtt12.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmtt8.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmtt8.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmtt9.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmtt9.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmu10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmu10.pfm + texmf-dist/fonts/type1/public/amsfonts/cm/cmvtt10.pfb + texmf-dist/fonts/type1/public/amsfonts/cm/cmvtt10.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy5.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy5.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy6.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy6.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy7.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy7.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy8.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy8.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy9.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmbsy9.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmcsc8.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmcsc8.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmcsc9.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmcsc9.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex7.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex7.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex8.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex8.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex9.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex9.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib5.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib5.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib6.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib6.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib7.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib7.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib8.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib8.pfm + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib9.pfb + texmf-dist/fonts/type1/public/amsfonts/cmextra/cmmib9.pfm + texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyb10.pfb + texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyb10.pfm + texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyi10.pfb + texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyi10.pfm + texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyr10.pfb + texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyr10.pfm + texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncysc10.pfb + texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncysc10.pfm + texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyss10.pfb + texmf-dist/fonts/type1/public/amsfonts/cyrillic/wncyss10.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/euex10.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/euex10.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/euex7.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/euex7.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/euex8.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/euex8.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/euex9.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/euex9.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eufb10.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eufb10.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eufb5.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eufb5.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eufb7.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eufb7.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eufm10.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eufm10.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eufm5.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eufm5.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eufm7.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eufm7.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eurb10.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eurb10.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eurb5.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eurb5.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eurb7.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eurb7.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eurm10.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eurm10.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eurm5.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eurm5.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eurm7.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eurm7.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eusb10.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eusb10.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eusb5.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eusb5.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eusb7.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eusb7.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eusm10.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eusm10.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eusm5.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eusm5.pfm + texmf-dist/fonts/type1/public/amsfonts/euler/eusm7.pfb + texmf-dist/fonts/type1/public/amsfonts/euler/eusm7.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy10.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy10.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy5.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy5.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy6.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy6.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy7.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy7.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy8.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy8.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy9.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasy9.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasyb10.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lasyb10.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lcircle1.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lcircle1.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lcirclew.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lcirclew.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmss8.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmss8.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmssb8.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmssb8.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmssi8.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/lcmssi8.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/line10.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/line10.pfm + texmf-dist/fonts/type1/public/amsfonts/latxfont/linew10.pfb + texmf-dist/fonts/type1/public/amsfonts/latxfont/linew10.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msam10.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msam10.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msam5.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msam5.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msam6.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msam6.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msam7.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msam7.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msam8.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msam8.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msam9.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msam9.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm10.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm10.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm5.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm5.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm6.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm6.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm7.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm7.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm8.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm8.pfm + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm9.pfb + texmf-dist/fonts/type1/public/amsfonts/symbols/msbm9.pfm + texmf-dist/tex/latex/amsfonts/amsfonts.sty + texmf-dist/tex/latex/amsfonts/amssymb.sty + texmf-dist/tex/latex/amsfonts/cmmib57.sty + texmf-dist/tex/latex/amsfonts/eucal.sty + texmf-dist/tex/latex/amsfonts/eufrak.sty + texmf-dist/tex/latex/amsfonts/euscript.sty + texmf-dist/tex/latex/amsfonts/ueuex.fd + texmf-dist/tex/latex/amsfonts/ueuf.fd + texmf-dist/tex/latex/amsfonts/ueur.fd + texmf-dist/tex/latex/amsfonts/ueus.fd + texmf-dist/tex/latex/amsfonts/umsa.fd + texmf-dist/tex/latex/amsfonts/umsb.fd + texmf-dist/tex/plain/amsfonts/amssym.def + texmf-dist/tex/plain/amsfonts/amssym.tex + texmf-dist/tex/plain/amsfonts/cyracc.def +catalogue-ctan /fonts/amsfonts +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license ofl +catalogue-topics font font-maths font-symbol-maths font-bbd font-type1 font-mf +catalogue-version 3.04 + +name amsmath +category Package +revision 43024 +catalogue latex-amsmath +shortdesc AMS mathematical facilities for LaTeX +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 29876 +containerchecksum ba04592114462985eb0109c3b555a60d2fa5f37efe17debb74e09e50c16a53d9439f41d980662149be1d98453e1d2207267bcbdcd2beace63b242ee73d709c9f +doccontainersize 2257508 +doccontainerchecksum 0b4cdcdd301fa14b47288c772663a70644597782c6e6deff3801fe3c7d927b247cdaba1af6006fd380b72b4ff750c134ac91f1f0234c287b89d07bedc1ac42f9 +srccontainersize 63364 +srccontainerchecksum be4b893b4ebd2f52b0c57aefe8866e52fd68020e706c28794c51c891589e803e2b6bba9b73efc742a0bd86fafe1d6aa32e9fe20230288b6cdecba9cc3adf8f37 +runfiles size=48 + texmf-dist/tex/latex/amsmath/amsbsy.sty + texmf-dist/tex/latex/amsmath/amscd.sty + texmf-dist/tex/latex/amsmath/amsgen.sty + texmf-dist/tex/latex/amsmath/amsmath.sty + texmf-dist/tex/latex/amsmath/amsopn.sty + texmf-dist/tex/latex/amsmath/amstex.sty + texmf-dist/tex/latex/amsmath/amstext.sty + texmf-dist/tex/latex/amsmath/amsxtra.sty +catalogue-also nath mathtools +catalogue-ctan /macros/latex/required/amsmath +catalogue-date 2017-01-22 17:52:55 +0100 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 2.16a + +name babel +category Package +revision 40706 +shortdesc Multilingual support for Plain TeX or LaTeX +longdesc The package manages culturally-determined typographical (and +longdesc other) rules, and hyphenation patterns for a wide range of +longdesc languages. A document may select a single language to be +longdesc supported, or it may select several, in which case the document +longdesc may switch from one language to another in a variety of ways. +longdesc Babel uses contributed configuration files that provide the +longdesc detail of what has to be done for each language. Users of XeTeX +longdesc are advised to use polyglossia rather than Babel. +containersize 24176 +containerchecksum 55b121f39898be6458e31932a4d799013337cd453cec6417d42a816a7990bbc8db7cccab21023271023491ab0bdcc41358f015ce5f34815c3dc4418ab0ec53a0 +doccontainersize 397176 +doccontainerchecksum fae6f59695f00fd5afdbd9e5fdcadf69c793a9e0928f02bc975288480d20f7a318a2f223b2b4940aff9bf199717e6f54f12c143b5c85c1e6fdce90c5dad78da1 +srccontainersize 95224 +srccontainerchecksum 1c47638a4868f85f2d77394f483ce249e540d6a482d724997c20f75cbb5b5e389773ff8554269b4b091eb3409178d728efdb7bd9f4084085085db1d60f01c40b +runfiles size=88 + texmf-dist/makeindex/babel/bbglo.ist + texmf-dist/makeindex/babel/bbind.ist + texmf-dist/tex/generic/babel/UKenglish.sty + texmf-dist/tex/generic/babel/USenglish.sty + texmf-dist/tex/generic/babel/afrikaans.sty + texmf-dist/tex/generic/babel/albanian.sty + texmf-dist/tex/generic/babel/american.sty + texmf-dist/tex/generic/babel/austrian.sty + texmf-dist/tex/generic/babel/babel.def + texmf-dist/tex/generic/babel/babel.sty + texmf-dist/tex/generic/babel/bahasa.sty + texmf-dist/tex/generic/babel/bahasam.sty + texmf-dist/tex/generic/babel/basque.sty + texmf-dist/tex/generic/babel/blplain.tex + texmf-dist/tex/generic/babel/bplain.tex + texmf-dist/tex/generic/babel/breton.sty + texmf-dist/tex/generic/babel/british.sty + texmf-dist/tex/generic/babel/bulgarian.sty + texmf-dist/tex/generic/babel/catalan.sty + texmf-dist/tex/generic/babel/croatian.sty + texmf-dist/tex/generic/babel/czech.sty + texmf-dist/tex/generic/babel/danish.sty + texmf-dist/tex/generic/babel/dutch.sty + texmf-dist/tex/generic/babel/english.sty + texmf-dist/tex/generic/babel/esperanto.sty + texmf-dist/tex/generic/babel/estonian.sty + texmf-dist/tex/generic/babel/finnish.sty + texmf-dist/tex/generic/babel/francais.sty + texmf-dist/tex/generic/babel/galician.sty + texmf-dist/tex/generic/babel/germanb.sty + texmf-dist/tex/generic/babel/greek.sty + texmf-dist/tex/generic/babel/hebrew.sty + texmf-dist/tex/generic/babel/hyphen.cfg + texmf-dist/tex/generic/babel/icelandic.sty + texmf-dist/tex/generic/babel/interlingua.sty + texmf-dist/tex/generic/babel/irish.sty + texmf-dist/tex/generic/babel/italian.sty + texmf-dist/tex/generic/babel/latin.sty + texmf-dist/tex/generic/babel/lsorbian.sty + texmf-dist/tex/generic/babel/luababel.def + texmf-dist/tex/generic/babel/magyar.sty + texmf-dist/tex/generic/babel/naustrian.sty + texmf-dist/tex/generic/babel/ngermanb.sty + texmf-dist/tex/generic/babel/nil.ldf + texmf-dist/tex/generic/babel/norsk.sty + texmf-dist/tex/generic/babel/plain.def + texmf-dist/tex/generic/babel/polish.sty + texmf-dist/tex/generic/babel/portuges.sty + texmf-dist/tex/generic/babel/romanian.sty + texmf-dist/tex/generic/babel/russianb.sty + texmf-dist/tex/generic/babel/samin.sty + texmf-dist/tex/generic/babel/scottish.sty + texmf-dist/tex/generic/babel/serbian.sty + texmf-dist/tex/generic/babel/slovak.sty + texmf-dist/tex/generic/babel/slovene.sty + texmf-dist/tex/generic/babel/spanish.sty + texmf-dist/tex/generic/babel/swedish.sty + texmf-dist/tex/generic/babel/switch.def + texmf-dist/tex/generic/babel/turkish.sty + texmf-dist/tex/generic/babel/ukraineb.sty + texmf-dist/tex/generic/babel/usorbian.sty + texmf-dist/tex/generic/babel/welsh.sty + texmf-dist/tex/generic/babel/xebabel.def +catalogue-ctan /macros/latex/required/babel/base +catalogue-date 2016-04-23 19:07:15 +0200 +catalogue-license lppl1.3 +catalogue-topics multilingual +catalogue-version 3.9r + +name babel-english +category Package +revision 43042 +shortdesc Babel support for English +longdesc The package provides the language definition file for support +longdesc of English in babel. Care is taken to select british +longdesc hyphenation patterns for British English and Australian text, +longdesc and default ('american') patterns for Canadian and USA text. +containersize 3056 +containerchecksum f4862977c0481625d87edf82133c85f4b06d32c14e53ca15590d3fde173b8e428c8d4ef11374dc3d035fd0c53e5f0c3bd5e3f260ea54079899e6ee1b900683b3 +doccontainersize 130752 +doccontainerchecksum 320625160626e7d6ad30c4f75cb3c429ac2b0530b97844b6135f57acbb244e6f3a94658b533c43cd338669907fba4a0b1d8b48c38a4601e3e12f01a26fc94adc +srccontainersize 6252 +srccontainerchecksum 4fbd6a20cf0eaaeee95444c638c8cb2330b1359983e091642da83938f506f1d80f51a9514cf044bfc3eb21480d58a23f9c5bb7c3b599cca0fc4ff19f62f2a364 +runfiles size=9 + texmf-dist/tex/generic/babel-english/american.ldf + texmf-dist/tex/generic/babel-english/australian.ldf + texmf-dist/tex/generic/babel-english/british.ldf + texmf-dist/tex/generic/babel-english/canadian.ldf + texmf-dist/tex/generic/babel-english/english.ldf + texmf-dist/tex/generic/babel-english/newzealand.ldf + texmf-dist/tex/generic/babel-english/ukenglish.ldf + texmf-dist/tex/generic/babel-english/usenglish.ldf +catalogue-ctan /macros/latex/contrib/babel-contrib/english +catalogue-date 2017-01-24 18:51:15 +0100 +catalogue-license lppl1.3 +catalogue-topics english multilingual-addon +catalogue-version 3.3q + +name babelbib +category Package +revision 25245 +shortdesc Multilingual bibliographies +longdesc This package enables to generate multilingual bibliographies in +longdesc cooperation with babel. Two approaches are possible: Each +longdesc citation may be written in another language, or the whole +longdesc bibliography can be typeset in a language chosen by the user. +longdesc In addition, the package supports commands to change the +longdesc typography of the bibliographies. +containersize 26152 +containerchecksum 7c32c39ae799d5f2db0d0709d915c217d1892483e8d4f2d2638b2c27426f0a39623db18209c9f5a9edf70cf97b5be10bb8a9af5521b439b4e109c91dd849de1f +doccontainersize 1242044 +doccontainerchecksum 941f5b92812f12e92d3f5821eb0515359325c274cdfe7fede757759e07561fb2bed39efc4ae6f47640c0f5c1328015572036a343e0c1481c4a255a81de35f182 +runfiles size=209 + texmf-dist/bibtex/bst/babelbib/bababbr3-fl.bst + texmf-dist/bibtex/bst/babelbib/bababbr3-lf.bst + texmf-dist/bibtex/bst/babelbib/bababbr3.bst + texmf-dist/bibtex/bst/babelbib/bababbrv-fl.bst + texmf-dist/bibtex/bst/babelbib/bababbrv-lf.bst + texmf-dist/bibtex/bst/babelbib/bababbrv.bst + texmf-dist/bibtex/bst/babelbib/babalpha-fl.bst + texmf-dist/bibtex/bst/babelbib/babalpha-lf.bst + texmf-dist/bibtex/bst/babelbib/babalpha.bst + texmf-dist/bibtex/bst/babelbib/babamspl.bst + texmf-dist/bibtex/bst/babelbib/babplai3-fl.bst + texmf-dist/bibtex/bst/babelbib/babplai3-lf.bst + texmf-dist/bibtex/bst/babelbib/babplai3.bst + texmf-dist/bibtex/bst/babelbib/babplain-fl.bst + texmf-dist/bibtex/bst/babelbib/babplain-lf.bst + texmf-dist/bibtex/bst/babelbib/babplain.bst + texmf-dist/bibtex/bst/babelbib/babunsrt-fl.bst + texmf-dist/bibtex/bst/babelbib/babunsrt-lf.bst + texmf-dist/bibtex/bst/babelbib/babunsrt.bst + texmf-dist/tex/latex/babelbib/afrikaans.bdf + texmf-dist/tex/latex/babelbib/babelbib.sty + texmf-dist/tex/latex/babelbib/bahasa.bdf + texmf-dist/tex/latex/babelbib/catalan.bdf + texmf-dist/tex/latex/babelbib/croatian.bdf + texmf-dist/tex/latex/babelbib/czech.bdf + texmf-dist/tex/latex/babelbib/danish.bdf + texmf-dist/tex/latex/babelbib/dutch.bdf + texmf-dist/tex/latex/babelbib/english.bdf + texmf-dist/tex/latex/babelbib/esperanto.bdf + texmf-dist/tex/latex/babelbib/finnish.bdf + texmf-dist/tex/latex/babelbib/french.bdf + texmf-dist/tex/latex/babelbib/galician.bdf + texmf-dist/tex/latex/babelbib/german.bdf + texmf-dist/tex/latex/babelbib/greek.bdf + texmf-dist/tex/latex/babelbib/italian.bdf + texmf-dist/tex/latex/babelbib/norsk.bdf + texmf-dist/tex/latex/babelbib/portuguese.bdf + texmf-dist/tex/latex/babelbib/romanian.bdf + texmf-dist/tex/latex/babelbib/russian.bdf + texmf-dist/tex/latex/babelbib/serbian.bdf + texmf-dist/tex/latex/babelbib/spanish.bdf + texmf-dist/tex/latex/babelbib/swedish.bdf +catalogue-ctan /biblio/bibtex/contrib/babelbib +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl1 +catalogue-topics bibtex-sty multilingual +catalogue-version 1.31 + +name bibtex +category Package +revision 42360 +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. In fact, it is best to avoid BibTeX in favour of biber +longdesc and BibLaTeX, if at all possible. +depend kpathsea +depend bibtex.ARCH +containersize 14884 +containerchecksum ea440795acbac56e2bd2101c2645bc0ff2c2c8776b192caca8764436b45e3277b69cf5cbe317c9b1089addca021abaf01e8382206c1c3ecc6a9a3c1b418f113f +doccontainersize 397980 +doccontainerchecksum 957add08e7b58d38909455f4eb6d2b99de1cbead8eba742b50e66710f93a12cf505a90096a4f4ce4923b40eb3bf1354f464876461f660e4626597fe01ba49bc5 +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-ctan /biblio/bibtex/base +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license knuth +catalogue-topics biblio +catalogue-version 0.99d + +name carlisle +category Package +revision 18258 +shortdesc David Carlisle's small packages +longdesc Many of David Carlisle's more substantial packages stand on +longdesc their own, or as part of the LaTeX latex-tools set; this set +longdesc contains: Making dotless 'j' characters for fonts that don't +longdesc have them; Fix marks in 2-column output; A method for combining +longdesc the capabilities of longtable and tabularx; A proforma for +longdesc building personalised LaTeX formats; A jiffy to suppress page +longdesc numbers; An environment for including Plain TeX in LaTeX +longdesc documents; A jiffy to remove counters from other counters' +longdesc reset lists; A package to rescale fonts to arbitrary sizes; A +longdesc jiffy to create 'slashed' characters for physicists; and An +longdesc environment for including HTML in LaTeX documents. +containersize 11332 +containerchecksum fbf8b46ac8a6391de3fc5416a7257aa5f01850f454043d0777cef4476be0140dc5877ffa338f10cdbe8802bf0b0c3fa5ebd054daefc8a787dc27d91e7d944397 +doccontainersize 20364 +doccontainerchecksum b791d80502f72ff7d606bc25b1b98329c2d479a96fabbd12450bb19267b0e29a685e6205ae6cdef69aaaeb099eddf23099a23c17c316d5b69ca19f2f8fb9f2f0 +srccontainersize 2884 +srccontainerchecksum cc90922b894d627760038dab199852dbc878d33f16dbea7271668498231bedaa6d62708ec2cf80ce196805fb54fbba48201eb91a708e9531f412cf4b92d4421b +runfiles size=11 + texmf-dist/tex/latex/carlisle/dotlessj.sty + texmf-dist/tex/latex/carlisle/ltxtable.sty + texmf-dist/tex/latex/carlisle/mylatex.ltx + texmf-dist/tex/latex/carlisle/plain.sty + texmf-dist/tex/latex/carlisle/remreset.sty + texmf-dist/tex/latex/carlisle/scalefnt.sty + texmf-dist/tex/latex/carlisle/slashed.sty +catalogue-ctan /macros/latex/contrib/carlisle +catalogue-date 2016-02-03 10:04:48 +0100 +catalogue-license lppl +catalogue-topics collection + +name checkcites +category Package +revision 28572 +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 4328 +containerchecksum c6d7001db87b2d6e70caf025b5a53092fc39f51e0be120166f133fe845a3b0356c898b43d89a6f1b778cdabfca7816821ac240224e811d2c459e6ae1010b01b8 +doccontainersize 223840 +doccontainerchecksum dfdf6b3dc1db5cbd545f9a8cfd876a6f25fc15d3feac52a4708fbd4f4e612660930bc8431beb5c37f42363a9a63cd6e94f5f57ce8324830ff0459cbce36f8f78 +runfiles size=4 + texmf-dist/scripts/checkcites/checkcites.lua +catalogue-ctan /support/checkcites +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl1.3 +catalogue-topics debug-supp +catalogue-version 1.0i + +name chickenize +category Package +revision 42341 +shortdesc Use lua callbacks for "interesting" textual effects +longdesc The package allows manipulations of any LuaTeX document (it is +longdesc known to work with Plain LuaTeX and LuaLaTeX). Most of the +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 11252 +containerchecksum 01c5b0ac19a820776671235ec86bf8e262797af07cf2fa8ba3fcbd79b60dbfb0713feb33d67ef98b7a761aa69ed83e8efb65840f5d43afdc4d3253d4811061d5 +doccontainersize 191136 +doccontainerchecksum dea137bfea58d55e1be007e885668821f30e9f4c839905b220b99bade6a57b15b5e417e43e9393fa635082423c461e779b4119434c68ffcc9bd49b9896956cee +srccontainersize 28716 +srccontainerchecksum e8fd25046c414e231348099e559913cfd3f0494f0548b39714433a01a616a7df82d6dc0e27523888b1d82e5698efec4b3802f3da87fab26dce8b7e4cdb9af49c +runfiles size=13 + texmf-dist/tex/luatex/chickenize/chickenize.lua + texmf-dist/tex/luatex/chickenize/chickenize.sty + texmf-dist/tex/luatex/chickenize/chickenize.tex +catalogue-ctan /macros/luatex/generic/chickenize +catalogue-date 2016-10-24 19:26:02 +0200 +catalogue-license lppl1.3 +catalogue-topics typesetting games luatex +catalogue-version 0.2.4 + +name cloze +category Package +revision 41531 +shortdesc A LuaLaTeX package for creating cloze texts +longdesc This is a LuaLaTeX package for generating cloze texts. The main +longdesc feature of the package is that the formatting doesn't change +longdesc when using the hide and show options. There are three commands +longdesc and one environment to generate cloze texts: the commands +longdesc \cloze, \clozefix, \clozefil, and the environment clozepar. +containersize 4240 +containerchecksum 40a0493bd6cea4faac4826116c019d7413da905d471a33c5f25d8b43ddef9f4c052739f82c3a8a744dfa9e82fed58b0c520b30ced2172575c3bd6943f1164750 +doccontainersize 222744 +doccontainerchecksum 51dbea12cd5b61c93915a3c646c4860fcb8b77c583390391822177fcd5532fe2f1b7bab892c1ffc9c90e6f9857853623e907569c15c12b87593ffc0c12fb5bf3 +srccontainersize 15292 +srccontainerchecksum 02e59381a704d89923ce9e11cf4d043df985b5c9410aa958c2fba531d4e544e91639d36abe8a9eb24c01ac8a055314fa6ff00992b314e3c3e22453d7533e6551 +runfiles size=5 + texmf-dist/scripts/cloze/cloze.lua + texmf-dist/tex/lualatex/cloze/cloze.sty +catalogue-ctan /macros/luatex/latex/cloze +catalogue-date 2016-06-23 15:20:39 +0200 +catalogue-license lppl1.3 +catalogue-topics exam luatex +catalogue-version 1.2 + +name cm +category Package +revision 42428 +shortdesc Computer Modern fonts +longdesc Knuth's final iteration of his re-interpretation of a c.19 +longdesc Modern-style font from Monotype. The family is comprehensive, +longdesc offering both sans and roman styles, and a monospaced font, +longdesc together with mathematics fonts closely integrated with the +longdesc mathematical facilities of TeX itself. The base fonts are +longdesc distributed as Metafont source, but autotraced PostScript Type +longdesc 1 versions are available (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 239500 +containerchecksum 883442c0926643386d112b341c47a78bafbf0e3dabcff1b0c6ef5a69baf8965000e46d59bf1f8b2342a1b8d9c6c2de0de5941bff9ff6098362bae1918902abc6 +doccontainersize 2496 +doccontainerchecksum fdc7e524219c70c14b954e1e1cf9e8ae747c906a26db6813b99425b3799a9e157eb57f9c71167f03a078933ee21d349130f340b5f5f7eb17d198705803064abc +runfiles size=350 + texmf-dist/fonts/map/dvips/cm/cmtext-bsr-interpolated.map + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmbx10.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmex10.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmmi10.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmmi7.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr10.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr12.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr17.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr6.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr7.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmr8.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmsl10.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmsy10.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmsy7.pk + texmf-dist/fonts/pk/ljfour/public/cm/dpi600/cmti10.pk + texmf-dist/fonts/source/public/cm/accent.mf + texmf-dist/fonts/source/public/cm/bigacc.mf + texmf-dist/fonts/source/public/cm/bigdel.mf + texmf-dist/fonts/source/public/cm/bigop.mf + texmf-dist/fonts/source/public/cm/calu.mf + texmf-dist/fonts/source/public/cm/cmb10.mf + texmf-dist/fonts/source/public/cm/cmbase.mf + texmf-dist/fonts/source/public/cm/cmbcsc10.mf + texmf-dist/fonts/source/public/cm/cmbsy10.mf + texmf-dist/fonts/source/public/cm/cmbtex10.mf + texmf-dist/fonts/source/public/cm/cmbtt10.mf + texmf-dist/fonts/source/public/cm/cmbtt8.mf + texmf-dist/fonts/source/public/cm/cmbtt9.mf + texmf-dist/fonts/source/public/cm/cmbx10.mf + texmf-dist/fonts/source/public/cm/cmbx12.mf + texmf-dist/fonts/source/public/cm/cmbx5.mf + texmf-dist/fonts/source/public/cm/cmbx6.mf + texmf-dist/fonts/source/public/cm/cmbx7.mf + texmf-dist/fonts/source/public/cm/cmbx8.mf + texmf-dist/fonts/source/public/cm/cmbx9.mf + texmf-dist/fonts/source/public/cm/cmbxsl10.mf + texmf-dist/fonts/source/public/cm/cmbxti10.mf + texmf-dist/fonts/source/public/cm/cmcsc10.mf + texmf-dist/fonts/source/public/cm/cmdunh10.mf + texmf-dist/fonts/source/public/cm/cmex10.mf + texmf-dist/fonts/source/public/cm/cmexb10.mf + texmf-dist/fonts/source/public/cm/cmff10.mf + texmf-dist/fonts/source/public/cm/cmfi10.mf + texmf-dist/fonts/source/public/cm/cmfib8.mf + texmf-dist/fonts/source/public/cm/cminch.mf + texmf-dist/fonts/source/public/cm/cmitt10.mf + texmf-dist/fonts/source/public/cm/cmmi10.mf + texmf-dist/fonts/source/public/cm/cmmi12.mf + texmf-dist/fonts/source/public/cm/cmmi5.mf + texmf-dist/fonts/source/public/cm/cmmi6.mf + texmf-dist/fonts/source/public/cm/cmmi7.mf + texmf-dist/fonts/source/public/cm/cmmi8.mf + texmf-dist/fonts/source/public/cm/cmmi9.mf + texmf-dist/fonts/source/public/cm/cmmib10.mf + texmf-dist/fonts/source/public/cm/cmplain.mf + texmf-dist/fonts/source/public/cm/cmr10.mf + texmf-dist/fonts/source/public/cm/cmr12.mf + texmf-dist/fonts/source/public/cm/cmr17.mf + texmf-dist/fonts/source/public/cm/cmr5.mf + texmf-dist/fonts/source/public/cm/cmr6.mf + texmf-dist/fonts/source/public/cm/cmr7.mf + texmf-dist/fonts/source/public/cm/cmr8.mf + texmf-dist/fonts/source/public/cm/cmr9.mf + texmf-dist/fonts/source/public/cm/cmsl10.mf + texmf-dist/fonts/source/public/cm/cmsl12.mf + texmf-dist/fonts/source/public/cm/cmsl8.mf + texmf-dist/fonts/source/public/cm/cmsl9.mf + texmf-dist/fonts/source/public/cm/cmsltt10.mf + texmf-dist/fonts/source/public/cm/cmss10.mf + texmf-dist/fonts/source/public/cm/cmss12.mf + texmf-dist/fonts/source/public/cm/cmss17.mf + texmf-dist/fonts/source/public/cm/cmss8.mf + texmf-dist/fonts/source/public/cm/cmss9.mf + texmf-dist/fonts/source/public/cm/cmssbx10.mf + texmf-dist/fonts/source/public/cm/cmssdc10.mf + texmf-dist/fonts/source/public/cm/cmssi10.mf + texmf-dist/fonts/source/public/cm/cmssi12.mf + texmf-dist/fonts/source/public/cm/cmssi17.mf + texmf-dist/fonts/source/public/cm/cmssi8.mf + texmf-dist/fonts/source/public/cm/cmssi9.mf + texmf-dist/fonts/source/public/cm/cmssq8.mf + texmf-dist/fonts/source/public/cm/cmssqi8.mf + texmf-dist/fonts/source/public/cm/cmsy10.mf + texmf-dist/fonts/source/public/cm/cmsy5.mf + texmf-dist/fonts/source/public/cm/cmsy6.mf + texmf-dist/fonts/source/public/cm/cmsy7.mf + texmf-dist/fonts/source/public/cm/cmsy8.mf + texmf-dist/fonts/source/public/cm/cmsy9.mf + texmf-dist/fonts/source/public/cm/cmtcsc10.mf + texmf-dist/fonts/source/public/cm/cmtex10.mf + texmf-dist/fonts/source/public/cm/cmtex8.mf + texmf-dist/fonts/source/public/cm/cmtex9.mf + texmf-dist/fonts/source/public/cm/cmti10.mf + texmf-dist/fonts/source/public/cm/cmti12.mf + texmf-dist/fonts/source/public/cm/cmti7.mf + texmf-dist/fonts/source/public/cm/cmti8.mf + texmf-dist/fonts/source/public/cm/cmti9.mf + texmf-dist/fonts/source/public/cm/cmtt10.mf + texmf-dist/fonts/source/public/cm/cmtt12.mf + texmf-dist/fonts/source/public/cm/cmtt8.mf + texmf-dist/fonts/source/public/cm/cmtt9.mf + texmf-dist/fonts/source/public/cm/cmttb10.mf + texmf-dist/fonts/source/public/cm/cmu10.mf + texmf-dist/fonts/source/public/cm/cmvtt10.mf + texmf-dist/fonts/source/public/cm/comlig.mf + texmf-dist/fonts/source/public/cm/csc.mf + texmf-dist/fonts/source/public/cm/cscspu.mf + texmf-dist/fonts/source/public/cm/greekl.mf + texmf-dist/fonts/source/public/cm/greeku.mf + texmf-dist/fonts/source/public/cm/itald.mf + texmf-dist/fonts/source/public/cm/italig.mf + texmf-dist/fonts/source/public/cm/itall.mf + texmf-dist/fonts/source/public/cm/italms.mf + texmf-dist/fonts/source/public/cm/italp.mf + texmf-dist/fonts/source/public/cm/italsp.mf + texmf-dist/fonts/source/public/cm/mathex.mf + texmf-dist/fonts/source/public/cm/mathit.mf + texmf-dist/fonts/source/public/cm/mathsy.mf + texmf-dist/fonts/source/public/cm/olddig.mf + texmf-dist/fonts/source/public/cm/punct.mf + texmf-dist/fonts/source/public/cm/roman.mf + texmf-dist/fonts/source/public/cm/romand.mf + texmf-dist/fonts/source/public/cm/romanl.mf + texmf-dist/fonts/source/public/cm/romanp.mf + texmf-dist/fonts/source/public/cm/romanu.mf + texmf-dist/fonts/source/public/cm/romlig.mf + texmf-dist/fonts/source/public/cm/romms.mf + texmf-dist/fonts/source/public/cm/romspl.mf + texmf-dist/fonts/source/public/cm/romspu.mf + texmf-dist/fonts/source/public/cm/romsub.mf + texmf-dist/fonts/source/public/cm/sym.mf + texmf-dist/fonts/source/public/cm/symbol.mf + texmf-dist/fonts/source/public/cm/texset.mf + texmf-dist/fonts/source/public/cm/textit.mf + texmf-dist/fonts/source/public/cm/title.mf + texmf-dist/fonts/source/public/cm/tset.mf + texmf-dist/fonts/source/public/cm/tsetsl.mf + texmf-dist/fonts/source/public/cm/white_setup.mf + texmf-dist/fonts/tfm/public/cm/cmb10.tfm + texmf-dist/fonts/tfm/public/cm/cmbcsc10.tfm + texmf-dist/fonts/tfm/public/cm/cmbsy10.tfm + texmf-dist/fonts/tfm/public/cm/cmbx10.tfm + texmf-dist/fonts/tfm/public/cm/cmbx12.tfm + texmf-dist/fonts/tfm/public/cm/cmbx5.tfm + texmf-dist/fonts/tfm/public/cm/cmbx6.tfm + texmf-dist/fonts/tfm/public/cm/cmbx7.tfm + texmf-dist/fonts/tfm/public/cm/cmbx8.tfm + texmf-dist/fonts/tfm/public/cm/cmbx9.tfm + texmf-dist/fonts/tfm/public/cm/cmbxsl10.tfm + texmf-dist/fonts/tfm/public/cm/cmbxti10.tfm + texmf-dist/fonts/tfm/public/cm/cmcsc10.tfm + texmf-dist/fonts/tfm/public/cm/cmdunh10.tfm + texmf-dist/fonts/tfm/public/cm/cmex10.tfm + texmf-dist/fonts/tfm/public/cm/cmff10.tfm + texmf-dist/fonts/tfm/public/cm/cmfi10.tfm + texmf-dist/fonts/tfm/public/cm/cmfib8.tfm + texmf-dist/fonts/tfm/public/cm/cminch.tfm + texmf-dist/fonts/tfm/public/cm/cmitt10.tfm + texmf-dist/fonts/tfm/public/cm/cmmi10.tfm + texmf-dist/fonts/tfm/public/cm/cmmi12.tfm + texmf-dist/fonts/tfm/public/cm/cmmi5.tfm + texmf-dist/fonts/tfm/public/cm/cmmi6.tfm + texmf-dist/fonts/tfm/public/cm/cmmi7.tfm + texmf-dist/fonts/tfm/public/cm/cmmi8.tfm + texmf-dist/fonts/tfm/public/cm/cmmi9.tfm + texmf-dist/fonts/tfm/public/cm/cmmib10.tfm + texmf-dist/fonts/tfm/public/cm/cmr10.tfm + texmf-dist/fonts/tfm/public/cm/cmr12.tfm + texmf-dist/fonts/tfm/public/cm/cmr17.tfm + texmf-dist/fonts/tfm/public/cm/cmr5.tfm + texmf-dist/fonts/tfm/public/cm/cmr6.tfm + texmf-dist/fonts/tfm/public/cm/cmr7.tfm + texmf-dist/fonts/tfm/public/cm/cmr8.tfm + texmf-dist/fonts/tfm/public/cm/cmr9.tfm + texmf-dist/fonts/tfm/public/cm/cmsl10.tfm + texmf-dist/fonts/tfm/public/cm/cmsl12.tfm + texmf-dist/fonts/tfm/public/cm/cmsl8.tfm + texmf-dist/fonts/tfm/public/cm/cmsl9.tfm + texmf-dist/fonts/tfm/public/cm/cmsltt10.tfm + texmf-dist/fonts/tfm/public/cm/cmss10.tfm + texmf-dist/fonts/tfm/public/cm/cmss12.tfm + texmf-dist/fonts/tfm/public/cm/cmss17.tfm + texmf-dist/fonts/tfm/public/cm/cmss8.tfm + texmf-dist/fonts/tfm/public/cm/cmss9.tfm + texmf-dist/fonts/tfm/public/cm/cmssbx10.tfm + texmf-dist/fonts/tfm/public/cm/cmssdc10.tfm + texmf-dist/fonts/tfm/public/cm/cmssi10.tfm + texmf-dist/fonts/tfm/public/cm/cmssi12.tfm + texmf-dist/fonts/tfm/public/cm/cmssi17.tfm + texmf-dist/fonts/tfm/public/cm/cmssi8.tfm + texmf-dist/fonts/tfm/public/cm/cmssi9.tfm + texmf-dist/fonts/tfm/public/cm/cmssq8.tfm + texmf-dist/fonts/tfm/public/cm/cmssqi8.tfm + texmf-dist/fonts/tfm/public/cm/cmsy10.tfm + texmf-dist/fonts/tfm/public/cm/cmsy5.tfm + texmf-dist/fonts/tfm/public/cm/cmsy6.tfm + texmf-dist/fonts/tfm/public/cm/cmsy7.tfm + texmf-dist/fonts/tfm/public/cm/cmsy8.tfm + texmf-dist/fonts/tfm/public/cm/cmsy9.tfm + texmf-dist/fonts/tfm/public/cm/cmtcsc10.tfm + texmf-dist/fonts/tfm/public/cm/cmtex10.tfm + texmf-dist/fonts/tfm/public/cm/cmtex8.tfm + texmf-dist/fonts/tfm/public/cm/cmtex9.tfm + texmf-dist/fonts/tfm/public/cm/cmti10.tfm + texmf-dist/fonts/tfm/public/cm/cmti12.tfm + texmf-dist/fonts/tfm/public/cm/cmti7.tfm + texmf-dist/fonts/tfm/public/cm/cmti8.tfm + texmf-dist/fonts/tfm/public/cm/cmti9.tfm + texmf-dist/fonts/tfm/public/cm/cmtt10.tfm + texmf-dist/fonts/tfm/public/cm/cmtt12.tfm + texmf-dist/fonts/tfm/public/cm/cmtt8.tfm + texmf-dist/fonts/tfm/public/cm/cmtt9.tfm + texmf-dist/fonts/tfm/public/cm/cmu10.tfm + texmf-dist/fonts/tfm/public/cm/cmvtt10.tfm +catalogue-ctan /fonts/cm +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license knuth +catalogue-topics font font-mf font-proportional font-mono font-cm + +name collection-basic +category Collection +revision 41616 +shortdesc Essential programs and files +longdesc These files are regarded as basic for any TeX system, covering +longdesc plain TeX macros, Computer Modern fonts, and configuration for +longdesc common drivers; no LaTeX. +depend texlive.infra +depend amsfonts +depend bibtex +depend cm +depend dvipdfmx +depend dvips +depend enctex +depend etex +depend etex-pkg +depend glyphlist +depend graphics-def +depend gsftopk +depend hyph-utf8 +depend hyphen-base +depend ifluatex +depend ifxetex +depend knuth-lib +depend knuth-local +depend kpathsea +depend lua-alt-getopt +depend luatex +depend makeindex +depend metafont +depend mflogo +depend mfware +depend pdftex +depend plain +depend tetex +depend tex +depend tex-ini-files +depend texconfig +depend texlive-common +depend texlive-docindex +depend texlive-en +depend texlive-msg-translations +depend texlive-scripts +depend unicode-data +depend updmap-map +depend xdvi +containersize 624 +containerchecksum 96625dfc1efec322330e506665a7e99f717958a55074bc2764f4e2d17ddbddc2114ba2688f1fad6c2598182f765acf5e2b9539d06e284afd4ac409b71519035b + +name collection-latex +category Collection +revision 41614 +shortdesc LaTeX fundamental packages +longdesc These packages are either mandated by the core LaTeX team, or +longdesc very widely used and strongly recommended in practice. +depend collection-basic +depend ae +depend amscls +depend amsmath +depend babel +depend babel-english +depend babelbib +depend carlisle +depend colortbl +depend fancyhdr +depend fix2col +depend geometry +depend graphics +depend graphics-cfg +depend hyperref +depend latex +depend latex-bin +depend latex-fonts +depend latexconfig +depend ltxmisc +depend mfnfss +depend mptopdf +depend natbib +depend oberdiek +depend pslatex +depend psnfss +depend pspicture +depend tools +depend url +containersize 524 +containerchecksum c3b6a10ab9b965734d58d5cd7c8148f44e20854442158b577cdcb7e637383e9b60d27abab3f0ddd99bd6b7eef2224fa6b0a8881ca3edc1e1476ea475eb2d9074 + +name collection-luatex +category Collection +revision 42670 +shortdesc LuaTeX packages +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 collection-basic +depend checkcites +depend chickenize +depend cloze +depend cstypo +depend ctablestack +depend enigma +depend interpreter +depend lua-check-hyphen +depend lua-visual-debug +depend lua2dox +depend luabibentry +depend luabidi +depend luacode +depend luahyphenrules +depend luaindex +depend luainputenc +depend luaintro +depend lualatex-doc +depend lualatex-math +depend lualibs +depend luamplib +depend luaotfload +depend luasseq +depend luatex85 +depend luatexbase +depend luatexko +depend luatextra +depend luatodonotes +depend luaxml +depend nodetree +depend odsfile +depend placeat +depend selnolig +depend showhyphens +depend spelling +depend ucharcat +containersize 588 +containerchecksum 905b663bd4a08c9282db5223b7fdc76d95124c536e57ad0023fa0d9ecc6048accf888a366abe4d3247fdde84926f4dfcde01afff8c966f93ab22828f102b4c37 + +name colortbl +category Package +revision 29803 +shortdesc Add colour to LaTeX tables +longdesc The package allows rows and columns to be coloured, and even +longdesc individual cells. +containersize 3208 +containerchecksum b355725187c3452dad902f7aa21e8ba4e23ff5e4dd66b9d8700e2af42555d156ebdcba328bb02e52424fce25b080932dd828091a89c79812cbb9e23c60fcea8c +doccontainersize 554136 +doccontainerchecksum b0586a3ed6afd1f2957fb26ea49b0c4ada7c0fccf93f882db7ee64e2e08d60a00409b327712ee5beac93458868145b0124837f31e380e711b57b1308286e60e7 +srccontainersize 11248 +srccontainerchecksum 5dd2dacc72632e8fa2b0f60c5500a1785483335b7e2fa54c6e22c6f6af6dd221741eb92dea6e5b6fc4f636bb3ab86e65932d55551ccfb8097a6eadfc2413bba2 +runfiles size=3 + texmf-dist/tex/latex/colortbl/colortbl.sty +catalogue-also xcolor +catalogue-ctan /macros/latex/contrib/colortbl +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics colour table +catalogue-version 1.0a + +name cstypo +category Package +revision 41986 +shortdesc Czech typography rules enforced through LuaTeX hooks +longdesc This package provides macros that enforce basic Czech +longdesc typography rules through Lua hooks available in LuaTeX. +containersize 2032 +containerchecksum dddf6e8596e070efb7dfc4677fc26c5792e281e3d6acdc0eef11651c3757d937624cda52d1415ca705213607b1d134ae8a9fd2d5d46fee8508db67e708cf8e1a +doccontainersize 104236 +doccontainerchecksum 88df00453b9bdbeffc46b4edf785fe59e8af6a055d5deee4c570ba953714b9de205a39274f827de2f2c0ebf6233a61e41dda6f00408ec493106f56b54aa9bda4 +runfiles size=4 + texmf-dist/tex/lualatex/cstypo/cstypo.sty + texmf-dist/tex/luatex/cstypo/cstypo-tex.tex + texmf-dist/tex/luatex/cstypo/cstypo.lua +catalogue-ctan /macros/luatex/generic/cstypo +catalogue-date 2016-09-03 05:36:43 +0200 +catalogue-license other-free +catalogue-topics luatex czech +catalogue-version 0.03 + +name ctablestack +category Package +revision 38514 +shortdesc Catcode table stable support +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 1132 +containerchecksum 46c391d0a837da260bed005abd5ca48565899de566a4f188ce03307e32860edfa3bc47f32ced569a798def6319e777dd1fa345217c560eb4ccd1d00dd2610af7 +doccontainersize 151912 +doccontainerchecksum d7f5e2740e10c6da59289af2f1254b4966e14ba3021b0ef0ac6b8831b8df206082ea3858a46b288a2d19fa3718023e6944cf912b6e814fc236f190811f14c78d +srccontainersize 2524 +srccontainerchecksum e17c1330b34318285e19aacd46558c7f19c142766ef350ac7e19a1a694fe9127d0f04692dcd52433055da3e36bb3607acae986ad4fd0b83feb140639d58685fb +runfiles size=1 + texmf-dist/tex/luatex/ctablestack/ctablestack.sty +catalogue-ctan /macros/luatex/generic/ctablestack +catalogue-date 2015-10-07 06:44:51 +0200 +catalogue-license lppl1.3 +catalogue-topics luatex +catalogue-version 1.0 + +name dehyph-exptl +category Package +revision 43666 +shortdesc Experimental hyphenation patterns for the German language +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 hyphen-base +depend hyph-utf8 +execute AddHyphen name=german-x-2017-03-31 synonyms=german-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehypht-x-2017-03-31.tex file_patterns=hyph-de-1901.pat.txt file_exceptions=hyph-de-1901.hyp.txt +execute AddHyphen name=ngerman-x-2017-03-31 synonyms=ngerman-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehyphn-x-2017-03-31.tex file_patterns=hyph-de-1996.pat.txt file_exceptions=hyph-de-1996.hyp.txt +containersize 88220 +containerchecksum aa32d870510ade25cc982d66f190949c15bc46825b014421b179ff992f00bfd9193c976a51978bc19944cd6b32b826a1fb147295d6069eebb163b07f406e8770 +doccontainersize 119424 +doccontainerchecksum aa9795d1d1e03ab4086ebd0a7ca097840959d49b9b63d7f6ecd8400155b9bd052a28d3dd71355d1c3b28bb510ebb2198fb9bbdd9f5240f57c55cf4a4fb104c05 +runfiles size=126 + texmf-dist/tex/generic/dehyph-exptl/dehyphn-x-2017-03-31.pat + texmf-dist/tex/generic/dehyph-exptl/dehyphn-x-2017-03-31.tex + texmf-dist/tex/generic/dehyph-exptl/dehypht-x-2017-03-31.pat + texmf-dist/tex/generic/dehyph-exptl/dehypht-x-2017-03-31.tex + texmf-dist/tex/generic/dehyph-exptl/dehyphts-x-2017-03-31.pat + texmf-dist/tex/generic/dehyph-exptl/dehyphts-x-2017-03-31.tex +catalogue-ctan /language/hyphenation/dehyph-exptl +catalogue-date 2017-03-31 12:12:25 +0200 +catalogue-license mitlppl +catalogue-topics hyphenation german +catalogue-version 0.41 + +name dvipdfmx +category TLCore +revision 43646 +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. There being no documentation as such, +longdesc users are advised to consult the documentation of dvipdfm (as +longdesc well, of course, as the package Readme. The current version of +longdesc the package is no longer maintained on CTAN as a separate +longdesc entity; see the TeX Live sources for the current release. +depend glyphlist +depend dvipdfmx.ARCH +postaction script file=tlpkg/tlpostcode/dvipdfmx.pl +containersize 26620 +containerchecksum bef0962a931ed66587984e26b7b49738d18fd16f881872a54e94d77550a68c6f08cc61b295a35fe991317140fa931426c2f1c72630c3c757653e46e528092273 +doccontainersize 2839568 +doccontainerchecksum 71b9c95c31f142bbf2f1a53ed60073132f510032b05c455d0f172b6c69fd632eb042c5464f00564b2ce3fcb4e25b0ed06b4e7c29aa1202fb5a49a96a432daf9d +runfiles size=40 + 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-ctan /dviware/dvipdfmx/dvipdfmx.tar.gz +catalogue-date 2017-03-28 19:31:22 +0200 +catalogue-license gpl +catalogue-topics dvi-pdf + +name dvips +category TLCore +revision 42410 +shortdesc A DVI to PostScript driver +longdesc This package has been withdrawn from CTAN, and bundled into the +longdesc distributions' package sets. The current sources of dvips may +longdesc be found in the distribution of dvipsk which forms part of the +longdesc TeX Live sources. +depend dvips.ARCH +containersize 34372 +containerchecksum e5fb9e65f0070d52b13b94d11c72247fac71bfe45d43daf8b6bebc3f8b06d63927832bd1fbf5f66464ff1d9ae001773c650ffdd9e9b30f26dee2087b3d3118a7 +doccontainersize 513008 +doccontainerchecksum ada60c607ca2034663277a15b11c37c2d1b0350193e26934ee3a96adaf15ccd4ae76a35113c44d30d471732062dfe971a4a024f64e7e028518bd7bbc05b914de +runfiles size=93 + 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.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-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl +catalogue-topics dvi-print + +name enctex +category Package +revision 34957 +shortdesc A TeX extension that translates input on its way into TeX +longdesc EncTeX is (another) TeX extension, written at the change-file +longdesc level. It provides means of translating input on the way into +longdesc TeX. It allows, for example, translation of multibyte +longdesc sequences, such as utf-8 encoding. +containersize 23768 +containerchecksum d4d4958b486f0d7df731362c74daa1d3c6907376175d7a9501f37b79882ed5cf5f398f09f422e6432c5071b7121c38a76a1c7e4c847b91672ec185880247553b +doccontainersize 253872 +doccontainerchecksum 6f89420f8968159005b2e37c9b6dadb71ab5c6987994dd022b8c6406aa1906bb5294e9e8add93cc49898959cba4a73eafa117882047b573819a21471550e1b76 +runfiles size=62 + texmf-dist/tex/generic/enctex/1250-csf.tex + texmf-dist/tex/generic/enctex/1250-il2.tex + texmf-dist/tex/generic/enctex/1250-latex.tex + texmf-dist/tex/generic/enctex/1250-t1.tex + texmf-dist/tex/generic/enctex/852-csf.tex + texmf-dist/tex/generic/enctex/852-il2.tex + texmf-dist/tex/generic/enctex/852-latex.tex + texmf-dist/tex/generic/enctex/852-t1.tex + texmf-dist/tex/generic/enctex/csfmacro.tex + texmf-dist/tex/generic/enctex/enc-u.tex + texmf-dist/tex/generic/enctex/encmacro.tex + texmf-dist/tex/generic/enctex/il2-1250.tex + texmf-dist/tex/generic/enctex/il2-852.tex + texmf-dist/tex/generic/enctex/il2-csf.tex + texmf-dist/tex/generic/enctex/il2-kam.tex + texmf-dist/tex/generic/enctex/il2-t1.tex + texmf-dist/tex/generic/enctex/kam-csf.tex + texmf-dist/tex/generic/enctex/kam-il2.tex + texmf-dist/tex/generic/enctex/kam-latex.tex + texmf-dist/tex/generic/enctex/kam-t1.tex + texmf-dist/tex/generic/enctex/mixcodes.tex + texmf-dist/tex/generic/enctex/noprefnt.tex + texmf-dist/tex/generic/enctex/plain-1250-cs.tex + texmf-dist/tex/generic/enctex/plain-852-cs.tex + texmf-dist/tex/generic/enctex/plain-il2-cs.tex + texmf-dist/tex/generic/enctex/plain-kam-cs.tex + texmf-dist/tex/generic/enctex/plain-utf8-cs.tex + texmf-dist/tex/generic/enctex/plain-utf8-ec.tex + texmf-dist/tex/generic/enctex/polyset.tex + texmf-dist/tex/generic/enctex/t1macro.tex + texmf-dist/tex/generic/enctex/utf8-csf.tex + texmf-dist/tex/generic/enctex/utf8-t1.tex + texmf-dist/tex/generic/enctex/utf8cseq.tex + texmf-dist/tex/generic/enctex/utf8lat1.tex + texmf-dist/tex/generic/enctex/utf8lata.tex + texmf-dist/tex/generic/enctex/utf8math.tex + texmf-dist/tex/generic/enctex/utf8off.tex + texmf-dist/tex/generic/enctex/utf8raw.tex + texmf-dist/tex/generic/enctex/utf8unkn.tex + texmf-dist/tex/generic/enctex/utf8warn.tex +catalogue-ctan /systems/enctex +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license gpl +catalogue-topics engine + +name enigma +category Package +revision 29802 +shortdesc Encrypt documents with a three rotor Enigma +longdesc The package provides historical encryption (Enigma cipher) for +longdesc LuaTeX-based formats. +containersize 18320 +containerchecksum 53552e08e75659d2417845a0d0e4f4c9da93cac82e52c1afe2c446c01fc453829627038298f7e943373d42a863e105c6b05f77d5756209012735615eae80ac3c +doccontainersize 266504 +doccontainerchecksum 5ba0171228739d69dfd6b864df5efef25e06f779a4336aedc04297d5de52396ec326f86f04bc875eab0c44814d30a74bb3d23221cb01df6c1c5a9cfc6702838f +runfiles size=19 + texmf-dist/scripts/context/lua/third/enigma/mtx-t-enigma.lua/mtx-t-enigma.lua + texmf-dist/tex/context/third/enigma/t-enigma.mkv/t-enigma.mkvi + texmf-dist/tex/generic/enigma/enigma.lua + texmf-dist/tex/latex/enigma/enigma.sty + texmf-dist/tex/plain/enigma/enigma.tex +catalogue-ctan /macros/luatex/generic/enigma +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license bsd +catalogue-topics security luatex +catalogue-version 0.1 + +name etex +category Package +revision 37057 +shortdesc An extended version of TeX, from the NTS project +longdesc An extended version of TeX (which is capable of running as if +longdesc it were TeX unmodified). E-TeX has been specified by the LaTeX +longdesc team as the engine for the development of LaTeX 2e, in the +longdesc immediate future; as a result, LaTeX programmers may (in all +longdesc current TeX distributions) assume e-TeX functionality. +longdesc Development versions of e-TeX are to be found in the TeX live +longdesc source repository. +containersize 11456 +containerchecksum e489af33559dc8326633747062dbfb96a3f55e851df334ffc2e80fcff668e12840b2ac958e6895ecd83c52aced1292a13cb24b736a1d321dac07ffe1545602e0 +doccontainersize 189804 +doccontainerchecksum d7363e295a44cee09ad5355836201d1f42892f453f952742447ad4543bd2c2ec980f58c0dcdaf9d618db37cb7e37bdaf5c3329b7c83e363f72770f5fe941e4b4 +runfiles size=11 + texmf-dist/fonts/source/public/etex/xbmc10.mf + texmf-dist/fonts/tfm/public/etex/xbmc10.tfm + texmf-dist/tex/plain/etex/etex.src + texmf-dist/tex/plain/etex/etexdefs.lib +catalogue-ctan /obsolete/systems/e-tex +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license knuth +catalogue-topics engine + +name etex-pkg +category Package +revision 41784 +shortdesc E-TeX support package +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 6024 +containerchecksum a72f2323601e2f4eb4d81d962046b66b3a38155590b071428bc20b772d51e17da9b7fe018d5d5773780931410499f012a2c34f283132c7f1c7bd60b660073156 +doccontainersize 604 +doccontainerchecksum 6e42a470e7fd7471e95379a94465b8dc450f7eb12c691d898135197e82da921cd34a105d039b554a7d737d9f8e0a5d0da6145cd8dac1044512ff0b8dad73acc6 +runfiles size=5 + texmf-dist/tex/latex/etex-pkg/etex.sty +catalogue-also elocalloc +catalogue-ctan /macros/latex/contrib/etex-pkg +catalogue-date 2016-08-01 18:38:49 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 2.7 + +name fancyhdr +category Package +revision 42004 +shortdesc Extensive control of page headers and footers in LaTeX2e +longdesc The package provides extensive facilities, both for +longdesc constructing headers and footers, and for controlling their use +longdesc (for example, at times when LaTeX would automatically change +longdesc the heading style in use). +containersize 8872 +containerchecksum 796db916ac0db5d740cc503c6ca5e04e223f0df10c0ad9ea878e38ff7a00ab83f4413d79df92c8ef75fa0986d3dceea8c21edb3ab6b84fcbcbc09e3889697500 +doccontainersize 401472 +doccontainerchecksum 5f4bbedf9ca6e3abd15381ac7fdc51876362fccbc3d6fa5a8c03ebc75d2b1e214085f3d432e17a4ea04deab475a49b8e95a17247b0d2811a3620b50e5e05b3d7 +runfiles size=9 + texmf-dist/tex/latex/fancyhdr/extramarks.sty + texmf-dist/tex/latex/fancyhdr/fancyhdr.sty + texmf-dist/tex/latex/fancyhdr/fancyheadings.sty +catalogue-also titleps +catalogue-ctan /macros/latex/contrib/fancyhdr +catalogue-date 2016-09-06 17:13:07 +0200 +catalogue-license lppl +catalogue-topics page-hf +catalogue-version 3.8 + +name fix2col +category Package +revision 38770 +shortdesc Fix miscellaneous two column mode features +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 2688 +containerchecksum bb7172c8ba510abd76413968861564bb34d298d61b317f2f61667f73888c539ada7696a83d704b9b7b9033d3dce7501011e76a3319a02bdbde86cefa60d05b07 +doccontainersize 212644 +doccontainerchecksum df2ac734f36e2d135e9fd15d2ba7264cddad8ebc6480f92c5a60d1cb5825e6d2a7b884bac598a9db86854514b549e1631bbae094f4c8b10ef669d97cb8467ed6 +srccontainersize 6380 +srccontainerchecksum 03a8278c0573a494684cbf1cabfe16cab459ba3acf879029fa6fd35b9ddfdc94e772b8b781eee010c1d9cbc458479a3a654153a99930cef813f1b223fc15eb09 +runfiles size=2 + texmf-dist/tex/latex/fix2col/fix2col.sty +catalogue-ctan /macros/latex/contrib/fix2col +catalogue-date 2015-11-04 07:05:06 +0100 +catalogue-license lppl +catalogue-topics typesetting macro-supp +catalogue-version 0.04 + +name geometry +category Package +revision 19716 +shortdesc Flexible and complete interface to document dimensions +longdesc The package provides an easy and flexible user interface to +longdesc customize page layout, implementing auto-centering and auto- +longdesc balancing mechanisms so that the users have only to give the +longdesc least description for the page layout. For example, if you want +longdesc to set each margin 2cm without header space, what you need is +longdesc just \usepackage[margin=2cm,nohead]{geometry}. 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). +containersize 8544 +containerchecksum d4d8c38dcc9a4c5cdbc66a05a18e26c0495440b87fe475f7ef174d34aec84255d4488daeb20da441415331cbf2454a4cf611957335e6a166f4482bacb7df60fe +doccontainersize 192164 +doccontainerchecksum eb0d2cdf21210a64698f7b8ec5f32e72bf300c576c6786889461f1f5c805d6b170e5949e9e356a90b11e19156ccf101faeaecaceb98c0b0874c93e9fc1ab1d3c +srccontainersize 32692 +srccontainerchecksum 931078da291e58a09782263adaad59df1eb3e167f3c502cfe8748ac94b70ce3d305fed35178cda9b9400cd8767a13ec03841bd8a069f3ff433a5f4ca14e9c539 +runfiles size=10 + texmf-dist/tex/latex/geometry/geometry.sty +catalogue-also vmargin typearea +catalogue-ctan /macros/latex/contrib/geometry +catalogue-date 2015-08-12 15:23:12 +0200 +catalogue-license lppl +catalogue-topics geometry +catalogue-version 5.6 + +name glyphlist +category Package +revision 41545 +containersize 24680 +containerchecksum 335aea5c560785e6ae8c777a60b24b44e632ec96f5755587e77009e086c28898726cd08024911ed2868a186f9ae212b61f6e75345a698e1aa562ac5bff13d2a3 +runfiles size=24 + texmf-dist/fonts/map/glyphlist/glyphlist.txt + texmf-dist/fonts/map/glyphlist/pdfglyphlist.txt + texmf-dist/fonts/map/glyphlist/texglyphlist.txt + +name graphics +category Package +revision 43024 +catalogue latex-graphics +shortdesc The LaTeX standard graphics bundle +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 +containersize 14164 +containerchecksum 3664bb589dba04519de084d46618ea0fe100631dbda634564f83d911773bd35a5eaf924c7dce1d0396144e311420eb006ef8064e355ab7dfba22685f0c918c52 +doccontainersize 2001600 +doccontainerchecksum df19086375d2f98541d2846bf679afb573d06b5449e63d2ed907791dbf8631387ea4b666971df284ad7431baa08ac4594e7ce7529b398df52dae7f117a225f59 +srccontainersize 50000 +srccontainerchecksum 1c72e978593ffe3ff161aafe2e3c35cf600d24440bff2e7bbfdda5f9a4e23a6a73c64ea01c50cb444e8fcac8a905fd73ba8cc1e4072ce244052afa0b0d4a45a1 +runfiles size=30 + texmf-dist/tex/latex/graphics/color.sty + texmf-dist/tex/latex/graphics/dvipdf.def + texmf-dist/tex/latex/graphics/dvipsnam.def + texmf-dist/tex/latex/graphics/dvipsone.def + texmf-dist/tex/latex/graphics/dviwin.def + texmf-dist/tex/latex/graphics/emtex.def + texmf-dist/tex/latex/graphics/epsfig.sty + texmf-dist/tex/latex/graphics/graphics.sty + texmf-dist/tex/latex/graphics/graphicx.sty + texmf-dist/tex/latex/graphics/keyval.sty + texmf-dist/tex/latex/graphics/lscape.sty + texmf-dist/tex/latex/graphics/pctex32.def + texmf-dist/tex/latex/graphics/pctexhp.def + texmf-dist/tex/latex/graphics/pctexps.def + texmf-dist/tex/latex/graphics/pctexwin.def + texmf-dist/tex/latex/graphics/rotating.sty + texmf-dist/tex/latex/graphics/tcidvi.def + texmf-dist/tex/latex/graphics/trig.sty + texmf-dist/tex/latex/graphics/truetex.def +catalogue-ctan /macros/latex/required/graphics +catalogue-date 2017-01-22 06:35:20 +0100 +catalogue-license lppl1.3 +catalogue-topics collection + +name graphics-cfg +category Package +revision 41448 +shortdesc Sample configuration files for LaTeX color and graphics +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 1128 +containerchecksum d6a2cac42ca09362e4870afb6cf5988fc6752cc65d9ca704ba2d9ba4bcbda294f6a517e7837500aa7b8c2dc445f5d18fe1553c4654120bed52fcb3a0f8d0a055 +doccontainersize 872 +doccontainerchecksum 764d901355b710192379936bfbce59a7961eb4fdc8ac0659cc8789a37f775bc882089be735ea679cc75a2f98609b1b171e9c3ee56f6d0605083bac3b125a5acb +runfiles size=2 + texmf-dist/tex/latex/graphics-cfg/color.cfg + texmf-dist/tex/latex/graphics-cfg/graphics.cfg +catalogue-also color graphics +catalogue-ctan /macros/latex/contrib/graphics-cfg +catalogue-date 2016-06-14 20:57:03 +0200 +catalogue-license pd +catalogue-topics graphics colour + +name graphics-def +category Package +revision 43025 +shortdesc Colour and graphics option files +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 24016 +containerchecksum 274bf91c390e6740177102222b1c84176bc088c00d026cac8aa7586018116664f2cadc26f70040ad63ded483728cde951d0f9129dada0d39ccad143a7dd08983 +doccontainersize 688 +doccontainerchecksum f2ce90977395830dd2bf0db503cb94bbc3c270fcfba9d42a9f8094210e8cd2aa8d905c3710cedc20b21680ecf48f7c917db6b5d5ae2fc0e7b1ec4be373a8f2fd +runfiles size=38 + texmf-dist/tex/latex/graphics-def/dvipdfmx.def + texmf-dist/tex/latex/graphics-def/dvips.def + texmf-dist/tex/latex/graphics-def/dvisvgm.def + texmf-dist/tex/latex/graphics-def/luatex.def + texmf-dist/tex/latex/graphics-def/pdftex.def + texmf-dist/tex/latex/graphics-def/xetex.def +catalogue-ctan /macros/latex/contrib/graphics-def +catalogue-date 2017-01-22 06:58:44 +0100 +catalogue-license lppl +catalogue-topics graphics-drv + +name gsftopk +category TLCore +revision 40768 +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 3428 +containerchecksum 750872ad83d230743dd4a5d929f54c11c42bfe3454b6547a96c09afebf81ebac4502e906f2b9ca4c2f613220f778d5a137fd72841b07355d6df6874b09779572 +doccontainersize 28032 +doccontainerchecksum 6a5be7daa5cac154a8980495a031bf9d254cb9e773ef8915d44169d7c049e1bc3edca2a51ea2e0ad4c2df810230602af019f951303a4bb851d69078832e0ac73 +runfiles size=2 + texmf-dist/dvips/gsftopk/render.ps +catalogue-ctan /fonts/utilities/gsftopk +catalogue-date 2015-08-13 17:20:27 +0200 +catalogue-license gpl +catalogue-topics font-cvt +catalogue-version 1.19.2 + +name hyperref +category Package +revision 43547 +shortdesc Extensive support for hypertext in LaTeX +longdesc The hyperref package is used to handle cross-referencing +longdesc commands in LaTeX to produce hypertext links in the document. +longdesc The package provides backends for the \special set defined for +longdesc HyperTeX DVI processors; for embedded pdfmark commands for +longdesc processing by Acrobat Distiller (dvips and Y&Y's dvipsone); for +longdesc Y&Y's dviwindo; for PDF control within pdfTeX and dvipdfm; for +longdesc TeX4ht; and for VTeX's pdf and HTML backends. The package is +longdesc distributed with the backref and nameref packages, which make +longdesc use of the facilities of hyperref. The package depends on the +longdesc author's kvoptions, ltxcmds and refcount packages. +containersize 108112 +containerchecksum d0a865faaaea19cf8b945bf5d10856e1995ecdc7689084aaf141e9c3cbb211a129dacfbd867ceaa6542f09ca8606ebbb05a4081d3642f6d3555589de7d3c6692 +doccontainersize 3370352 +doccontainerchecksum adfd557756208a73e95046b80d90b157cfbfe784c98d2507d9d864ca2a30fa51d68a5b01cd7103b330093fe42ba0bac194aae0037d07aebebb7dad6680d0986c +srccontainersize 288332 +srccontainerchecksum 57c46ff6d551631937ecefc82147a4222ea58c52631513683dcef9c908437faaff35da37db6803d3213190ce2b1b6a70ebdfa128c07fb4199e58bff69b1be686 +runfiles size=235 + texmf-dist/tex/latex/hyperref/backref.sty + texmf-dist/tex/latex/hyperref/hdvipdfm.def + texmf-dist/tex/latex/hyperref/hdvips.def + texmf-dist/tex/latex/hyperref/hdvipson.def + texmf-dist/tex/latex/hyperref/hdviwind.def + texmf-dist/tex/latex/hyperref/hluatex.def + texmf-dist/tex/latex/hyperref/hpdftex.def + texmf-dist/tex/latex/hyperref/htex4ht.cfg + texmf-dist/tex/latex/hyperref/htex4ht.def + texmf-dist/tex/latex/hyperref/htexture.def + texmf-dist/tex/latex/hyperref/hvtex.def + texmf-dist/tex/latex/hyperref/hvtexhtm.def + texmf-dist/tex/latex/hyperref/hvtexmrk.def + texmf-dist/tex/latex/hyperref/hxetex.def + texmf-dist/tex/latex/hyperref/hylatex.ltx + texmf-dist/tex/latex/hyperref/hyperref.sty + texmf-dist/tex/latex/hyperref/hypertex.def + texmf-dist/tex/latex/hyperref/minitoc-hyper.sty + texmf-dist/tex/latex/hyperref/nameref.sty + texmf-dist/tex/latex/hyperref/nohyperref.sty + texmf-dist/tex/latex/hyperref/ntheorem-hyper.sty + texmf-dist/tex/latex/hyperref/pd1enc.def + texmf-dist/tex/latex/hyperref/pdfmark.def + texmf-dist/tex/latex/hyperref/psdextra.def + texmf-dist/tex/latex/hyperref/puarenc.def + texmf-dist/tex/latex/hyperref/puenc.def + texmf-dist/tex/latex/hyperref/puvnenc.def + texmf-dist/tex/latex/hyperref/xr-hyper.sty +catalogue-ctan /macros/latex/contrib/hyperref +catalogue-date 2017-03-19 12:43:09 +0100 +catalogue-license lppl +catalogue-topics hyper pdf-feat +catalogue-version 6.85a + +name hyph-utf8 +category Package +revision 41189 +shortdesc Hyphenation patterns expressed in UTF-8 +longdesc Modern native UTF-8 engines such as XeTeX and LuaTeX need +longdesc hyphenation patterns in UTF-8 format, whereas older systems +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 UTF- +longdesc 8 format, together with converters for use with 8-bit fonts in +longdesc 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 15964 +containerchecksum feecb2a15d98922e49da7e910013ae6c97ff64f24e4b00789bb74230045d741a5a92ada4fa7008ae93ee0b35862af16c8bf541f1a1237e36c031cd5fd6c5712c +doccontainersize 268920 +doccontainerchecksum 4b0e898a05ab7be3712d3561ec3a8f734de8b5be956e7f5f84ce5ad7c57b5e393a7dba3010fa1952ee20e4993e4fa5d339c6fa20d8fed2bcaeb1f5d533f5357e +srccontainersize 32220 +srccontainerchecksum c43e4b9363d785bc38701b5fed5aea9d39b3f15465f0338010617beb6884c18927c598f267685e2af237a5101f3dfea1f5ca9acddac756b004d5e12b4830a388 +runfiles size=25 + texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex + texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-il2.tex + texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-il3.tex + texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-l7x.tex + texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-lmc.tex + texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-lth.tex + texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-qx.tex + texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t2a.tex + texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t8m.tex + texmf-dist/tex/luatex/hyph-utf8/etex.src + texmf-dist/tex/luatex/hyph-utf8/luatex-hyphen.lua +catalogue-also dehyph-exptl +catalogue-ctan /language/hyph-utf8 +catalogue-date 2016-05-16 18:21:07 +0200 +catalogue-license other-free +catalogue-topics hyphenation + +name hyphen-base +category TLCore +revision 43679 +containersize 22296 +containerchecksum 6a6ccb73d2e56233956460ab6ec1e1585f9ff4d88cf14e91186429f7fee78bdf58c78d96f25e0e8208d8824ab907b49f2d61119e4d7d17c1b79aed2fd2b3e834 +runfiles size=24 + texmf-dist/tex/generic/config/language.dat + texmf-dist/tex/generic/config/language.dat.lua + texmf-dist/tex/generic/config/language.def + texmf-dist/tex/generic/config/language.us + texmf-dist/tex/generic/config/language.us.def + texmf-dist/tex/generic/config/language.us.lua + texmf-dist/tex/generic/hyphen/dumyhyph.tex + texmf-dist/tex/generic/hyphen/hyphen.tex + texmf-dist/tex/generic/hyphen/hypht1.tex + texmf-dist/tex/generic/hyphen/zerohyph.tex + +name ifluatex +category Package +revision 43610 +shortdesc Provides the \ifluatex switch +longdesc The package looks for LuaTeX regardless of its mode and +longdesc provides the switch \ifluatex; it works with Plain TeX or +longdesc LaTeX. The package is part of the oberdiek bundle. +containersize 2380 +containerchecksum d2b795cbb04fef938ab4a0fd8d52b24ca18f88cea76d3324369b59ef34146c19cd254b46cf86160f3e2e7de6d22642f4a8938e34f54113920f57a0bff5456852 +doccontainersize 122964 +doccontainerchecksum b85d5974677d307a23ba830d574ce4a60b342db9b6f6b5a7e703f91fa8c481f5a960dcc971747e864360fdc15f8922c2dc15894affbfa4aecbe8621af5eed23c +srccontainersize 7440 +srccontainerchecksum 2622b1b296bc9ef0b291923716ede3dfa09ebc7b44efee9057df663a8d8bc1ab121e259b4682250bb8df5e99c3f3fe3f5903f73fb4d3227c7b8ab1381b6b22c5 +runfiles size=2 + texmf-dist/tex/generic/oberdiek/ifluatex.sty +catalogue-ctan /macros/latex/contrib/oberdiek/ifluatex.dtx +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl1.3 +catalogue-topics env-query +catalogue-version 1.4 + +name ifxetex +category Package +revision 19685 +shortdesc Am I running under XeTeX? +longdesc A simple package which provides an \ifxetex conditional, so +longdesc that other code can determine that it is running under XeTeX. +longdesc The package requires the e-TeX extensions to the TeX primitive +longdesc set. +containersize 1192 +containerchecksum d9e89a2132c8081392acb52abed48562f6d9c5b963abf625b0837ec19d17823c34ff52c99e8b3001ce8c13cef55862fd3545140d5f2d6553225d61f90645e504 +doccontainersize 165756 +doccontainerchecksum 7635b999515eb2c381486c303b21a27e25ab6560aaa0c6f939162d1c48f6bfce88e8f60c6cd10e5ca681ec40751bf56f4e0086ed0d0dd7253c9503be546b5b5f +srccontainersize 2280 +srccontainerchecksum 67e1fea6744928044a98075047bb19b84c858d7df86ddd86d789e2bc13e97054e921df252824ab5783a23088eab263d99f88dda2c64c57606694823e57611173 +runfiles size=1 + texmf-dist/tex/generic/ifxetex/ifxetex.sty +catalogue-also ifpdf ifvtex ifluatex +catalogue-ctan /macros/generic/ifxetex +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics env-query +catalogue-version 0.6 + +name interpreter +category Package +revision 27232 +shortdesc Translate input files on the fly +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 6228 +containerchecksum dd4a9e6cf129f54f733169b29177e7f3ad6eec32aea4afc1fc5b7dfc95f4fc42774360e0dc3a76706a5247feff7c85a82b693aa32d3752dd6d4700939fd2b5aa +doccontainersize 122152 +doccontainerchecksum 1068881b1f56f970c25b41d3e15247b983e056a33cc80f4d1bd4d298abec15afce38391797d1bab931cea42a2bfe26ba881a266e3c154135ed66c2ade4c1a022 +runfiles size=8 + texmf-dist/tex/luatex/interpreter/interpreter.lua + texmf-dist/tex/luatex/interpreter/interpreter.sty + texmf-dist/tex/luatex/interpreter/interpreter.tex +catalogue-ctan /macros/luatex/generic/interpreter +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics foreign-import macro-supp luatex +catalogue-version 1.2 + +name knuth-lib +category Package +revision 35820 +shortdesc A small library of Metafont sources +longdesc A collection of miscellaneous Metafont source, including the +longdesc means to generate the logo font that is used for Metafont and +longdesc MetaPost. +containersize 30420 +containerchecksum dc5c964a6cc9480d32a8d0d32a40de7f703a3232eaf2c9fff7938a5b495a1eee0fe571ce7e2b340cb156df1028ffc2e6dcb57cbe2f545473dff4770c0b7f7fea +runfiles size=47 + texmf-dist/fonts/source/public/knuth-lib/3test.mf + texmf-dist/fonts/source/public/knuth-lib/6test.mf + texmf-dist/fonts/source/public/knuth-lib/expr.mf + texmf-dist/fonts/source/public/knuth-lib/grayf.mf + texmf-dist/fonts/source/public/knuth-lib/io.mf + texmf-dist/fonts/source/public/knuth-lib/logo.mf + texmf-dist/fonts/source/public/knuth-lib/logo10.mf + texmf-dist/fonts/source/public/knuth-lib/logo8.mf + texmf-dist/fonts/source/public/knuth-lib/logo9.mf + texmf-dist/fonts/source/public/knuth-lib/logobf10.mf + texmf-dist/fonts/source/public/knuth-lib/logosl10.mf + texmf-dist/fonts/source/public/knuth-lib/manfnt.mf + texmf-dist/fonts/source/public/knuth-lib/null.mf + texmf-dist/fonts/source/public/knuth-lib/rtest.mf + texmf-dist/fonts/source/public/knuth-lib/slant.mf + texmf-dist/fonts/source/public/knuth-lib/test.mf + texmf-dist/fonts/source/public/knuth-lib/waits.mf + texmf-dist/fonts/source/public/knuth-lib/ztest.mf + texmf-dist/fonts/tfm/public/knuth-lib/logo10.tfm + texmf-dist/fonts/tfm/public/knuth-lib/logo8.tfm + texmf-dist/fonts/tfm/public/knuth-lib/logo9.tfm + texmf-dist/fonts/tfm/public/knuth-lib/logobf10.tfm + texmf-dist/fonts/tfm/public/knuth-lib/logosl10.tfm + texmf-dist/fonts/tfm/public/knuth-lib/manfnt.tfm + texmf-dist/tex/generic/knuth-lib/null.tex + texmf-dist/tex/plain/knuth-lib/manmac.tex + texmf-dist/tex/plain/knuth-lib/mftmac.tex + texmf-dist/tex/plain/knuth-lib/story.tex + texmf-dist/tex/plain/knuth-lib/testfont.tex + texmf-dist/tex/plain/knuth-lib/webmac.tex +catalogue-ctan /systems/knuth/dist/lib +catalogue-date 2015-08-15 05:39:34 +0200 +catalogue-license knuth +catalogue-topics collection + +name knuth-local +category Package +revision 38627 +shortdesc Knuth's local information +longdesc A collection of experimental programs and developments based +longdesc on, or complementary to, the matter in his distribution +longdesc directories. +containersize 23060 +containerchecksum 354729cd8c22a36c06a3757acd4b4ccb9f95ae9a16166dbc9a9593d45e674c9740e831032d2751ca1ac09460407a963e9f238a7e98b8c1a8a32b1aefe6c2cb8f +runfiles size=52 + texmf-dist/fonts/source/public/knuth-local/black.mf + texmf-dist/fonts/source/public/knuth-local/blackaps.mf + texmf-dist/fonts/source/public/knuth-local/blackimagen.mf + texmf-dist/fonts/source/public/knuth-local/blacklino.mf + texmf-dist/fonts/source/public/knuth-local/blacklj.mf + texmf-dist/fonts/source/public/knuth-local/domino.mf + texmf-dist/fonts/source/public/knuth-local/gray.mf + texmf-dist/fonts/source/public/knuth-local/grayaps.mf + texmf-dist/fonts/source/public/knuth-local/grayimagen.mf + texmf-dist/fonts/source/public/knuth-local/grayimagen3.mf + texmf-dist/fonts/source/public/knuth-local/grayimagenlight.mf + texmf-dist/fonts/source/public/knuth-local/graylj.mf + texmf-dist/fonts/source/public/knuth-local/local.mf + texmf-dist/fonts/source/public/knuth-local/logod10.mf + texmf-dist/fonts/source/public/knuth-local/logosl9.mf + texmf-dist/fonts/source/public/knuth-local/mfman.mf + texmf-dist/fonts/source/public/knuth-local/oneone.mf + texmf-dist/fonts/source/public/knuth-local/random.mf + texmf-dist/fonts/source/public/knuth-local/slantaps4.mf + texmf-dist/fonts/source/public/knuth-local/slantimagen4.mf + texmf-dist/fonts/source/public/knuth-local/slantimagen6.mf + texmf-dist/fonts/source/public/knuth-local/slantlino4.mf + texmf-dist/fonts/source/public/knuth-local/slantlj4.mf + texmf-dist/fonts/source/public/knuth-local/snfont.mf + texmf-dist/fonts/tfm/public/knuth-local/domino.tfm + texmf-dist/fonts/tfm/public/knuth-local/logod10.tfm + texmf-dist/fonts/tfm/public/knuth-local/logosl9.tfm + texmf-dist/fonts/tfm/public/knuth-local/random.tfm + texmf-dist/fonts/tfm/public/knuth-local/snfont.tfm + texmf-dist/mft/knuth-local/e.mft + texmf-dist/tex/plain/knuth-local/xepsf.tex +catalogue-ctan /systems/knuth/local +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license knuth +catalogue-topics collection + +name kpathsea +category TLCore +revision 43698 +shortdesc Path searching library for TeX-related files +longdesc Kpathsea is a library and utility programs which provide path +longdesc searching facilities for TeX file types, including the self- +longdesc locating feature required for movable installations, layered on +longdesc top of a general search mechanism. It is not distributed +longdesc separately, but rather is released and maintained as part of +longdesc the TeX live sources. +depend kpathsea.ARCH +containersize 30776 +containerchecksum 14b352c562d4e68172eb8bb8e4fb4d1ad74928252cb3e6ac620ba81868a8757f76ed318964e0e2eb0efb594ea15236b7a2b99453137a18817210c411044dd0f1 +doccontainersize 1128868 +doccontainerchecksum af829f666c815da49b59bbe678a2c1e9fe45cbc528f484dfb6e43a1e52bbf0245a4e571505f5be2cc7cf7f5ebcdb06b862ac6e9f9b5390489f0fab10a11fd997 +runfiles size=50 + 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-date 2016-06-24 19:18:15 +0200 +catalogue-license lgpl +catalogue-topics sys-supp + +name latex +category Package +revision 43315 +shortdesc A TeX macro package that defines LaTeX +longdesc LaTeX is a widely-used macro package for TeX, providing many +longdesc basic document formating commands extended by a wide range of +longdesc packages. It is a development of Leslie Lamport's 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 luatex +depend pdftex +depend latexconfig +depend latex-fonts +containersize 163320 +containerchecksum d71185f558ac4802a3153497f9f05f94aff0cfb5f372cb6b569406c76a1a2040e3cf98589e5ebfe958806f7bd2ef7f2c9e27350d1163e8371c6866a0091a2f1b +doccontainersize 12644944 +doccontainerchecksum c648e8f1fae8c8a9c948a1fd72ec75e48ee8042e4b742e0266934ad1d78bfad6bb42c931ce1170c646fc9ed178e563fd7b184f5e97005b26511642483d168d9c +srccontainersize 512544 +srccontainerchecksum f55375c05af703f61c282673b702de0c67e1d80229ceb2e16ee937894c788812ac04b5e711a002c918ce97d11ee46c5e82203c716a60e0993c1ba32de9990486 +runfiles size=410 + texmf-dist/makeindex/latex/gglo.ist + texmf-dist/makeindex/latex/gind.ist + texmf-dist/tex/latex/base/alltt.sty + texmf-dist/tex/latex/base/ansinew.def + texmf-dist/tex/latex/base/applemac.def + texmf-dist/tex/latex/base/article.cls + texmf-dist/tex/latex/base/article.sty + texmf-dist/tex/latex/base/ascii.def + texmf-dist/tex/latex/base/bezier.sty + texmf-dist/tex/latex/base/bk10.clo + texmf-dist/tex/latex/base/bk11.clo + texmf-dist/tex/latex/base/bk12.clo + texmf-dist/tex/latex/base/book.cls + texmf-dist/tex/latex/base/book.sty + texmf-dist/tex/latex/base/cp1250.def + texmf-dist/tex/latex/base/cp1252.def + texmf-dist/tex/latex/base/cp1257.def + texmf-dist/tex/latex/base/cp437.def + texmf-dist/tex/latex/base/cp437de.def + texmf-dist/tex/latex/base/cp850.def + texmf-dist/tex/latex/base/cp852.def + texmf-dist/tex/latex/base/cp858.def + texmf-dist/tex/latex/base/cp865.def + texmf-dist/tex/latex/base/decmulti.def + texmf-dist/tex/latex/base/doc.sty + texmf-dist/tex/latex/base/docstrip.tex + texmf-dist/tex/latex/base/exscale.sty + texmf-dist/tex/latex/base/fix-cm.sty + texmf-dist/tex/latex/base/fixltx2e.sty + texmf-dist/tex/latex/base/flafter.sty + texmf-dist/tex/latex/base/fleqn.clo + texmf-dist/tex/latex/base/fleqn.sty + texmf-dist/tex/latex/base/fltrace.sty + texmf-dist/tex/latex/base/fontenc.sty + texmf-dist/tex/latex/base/fontmath.cfg + texmf-dist/tex/latex/base/fontmath.ltx + texmf-dist/tex/latex/base/fonttext.cfg + texmf-dist/tex/latex/base/fonttext.ltx + texmf-dist/tex/latex/base/graphpap.sty + texmf-dist/tex/latex/base/hyphen.ltx + texmf-dist/tex/latex/base/idx.tex + texmf-dist/tex/latex/base/ifthen.sty + texmf-dist/tex/latex/base/inputenc.sty + texmf-dist/tex/latex/base/lablst.tex + texmf-dist/tex/latex/base/latex.ltx + texmf-dist/tex/latex/base/latex209.def + texmf-dist/tex/latex/base/latexrelease.sty + texmf-dist/tex/latex/base/latexsym.sty + texmf-dist/tex/latex/base/latin1.def + texmf-dist/tex/latex/base/latin10.def + texmf-dist/tex/latex/base/latin2.def + texmf-dist/tex/latex/base/latin3.def + texmf-dist/tex/latex/base/latin4.def + texmf-dist/tex/latex/base/latin5.def + texmf-dist/tex/latex/base/latin9.def + texmf-dist/tex/latex/base/lcyenc.dfu + texmf-dist/tex/latex/base/leqno.clo + texmf-dist/tex/latex/base/leqno.sty + texmf-dist/tex/latex/base/letter.cls + texmf-dist/tex/latex/base/letter.sty + texmf-dist/tex/latex/base/lppl.tex + texmf-dist/tex/latex/base/ltluatex.lua + texmf-dist/tex/latex/base/ltluatex.tex + texmf-dist/tex/latex/base/ltnews.cls + texmf-dist/tex/latex/base/ltxcheck.tex + texmf-dist/tex/latex/base/ltxdoc.cls + texmf-dist/tex/latex/base/ltxguide.cls + texmf-dist/tex/latex/base/ly1enc.dfu + texmf-dist/tex/latex/base/macce.def + texmf-dist/tex/latex/base/makeidx.sty + texmf-dist/tex/latex/base/minimal.cls + texmf-dist/tex/latex/base/newlfont.sty + texmf-dist/tex/latex/base/next.def + texmf-dist/tex/latex/base/nfssfont.tex + texmf-dist/tex/latex/base/oldlfont.sty + texmf-dist/tex/latex/base/omlcmm.fd + texmf-dist/tex/latex/base/omlcmr.fd + texmf-dist/tex/latex/base/omlenc.def + texmf-dist/tex/latex/base/omllcmm.fd + texmf-dist/tex/latex/base/omscmr.fd + texmf-dist/tex/latex/base/omscmsy.fd + texmf-dist/tex/latex/base/omsenc.def + texmf-dist/tex/latex/base/omsenc.dfu + texmf-dist/tex/latex/base/omslcmsy.fd + texmf-dist/tex/latex/base/omxcmex.fd + texmf-dist/tex/latex/base/omxlcmex.fd + texmf-dist/tex/latex/base/openbib.sty + texmf-dist/tex/latex/base/ot1cmdh.fd + texmf-dist/tex/latex/base/ot1cmfib.fd + texmf-dist/tex/latex/base/ot1cmfr.fd + texmf-dist/tex/latex/base/ot1cmr.fd + texmf-dist/tex/latex/base/ot1cmss.fd + texmf-dist/tex/latex/base/ot1cmtt.fd + texmf-dist/tex/latex/base/ot1cmvtt.fd + texmf-dist/tex/latex/base/ot1enc.def + texmf-dist/tex/latex/base/ot1enc.dfu + texmf-dist/tex/latex/base/ot1lcmss.fd + texmf-dist/tex/latex/base/ot1lcmtt.fd + texmf-dist/tex/latex/base/ot2enc.dfu + texmf-dist/tex/latex/base/ot4enc.def + texmf-dist/tex/latex/base/preload.cfg + texmf-dist/tex/latex/base/preload.ltx + texmf-dist/tex/latex/base/proc.cls + texmf-dist/tex/latex/base/proc.sty + texmf-dist/tex/latex/base/report.cls + texmf-dist/tex/latex/base/report.sty + texmf-dist/tex/latex/base/sample2e.tex + texmf-dist/tex/latex/base/sfonts.def + texmf-dist/tex/latex/base/shortvrb.sty + texmf-dist/tex/latex/base/showidx.sty + texmf-dist/tex/latex/base/size10.clo + texmf-dist/tex/latex/base/size11.clo + texmf-dist/tex/latex/base/size12.clo + texmf-dist/tex/latex/base/slides.cls + texmf-dist/tex/latex/base/slides.def + texmf-dist/tex/latex/base/slides.sty + texmf-dist/tex/latex/base/small2e.tex + texmf-dist/tex/latex/base/source2e.tex + texmf-dist/tex/latex/base/syntonly.sty + texmf-dist/tex/latex/base/t1cmdh.fd + texmf-dist/tex/latex/base/t1cmfib.fd + texmf-dist/tex/latex/base/t1cmfr.fd + texmf-dist/tex/latex/base/t1cmr.fd + texmf-dist/tex/latex/base/t1cmss.fd + texmf-dist/tex/latex/base/t1cmtt.fd + texmf-dist/tex/latex/base/t1cmvtt.fd + texmf-dist/tex/latex/base/t1enc.def + texmf-dist/tex/latex/base/t1enc.dfu + texmf-dist/tex/latex/base/t1enc.sty + texmf-dist/tex/latex/base/t1lcmss.fd + texmf-dist/tex/latex/base/t1lcmtt.fd + texmf-dist/tex/latex/base/t2aenc.dfu + texmf-dist/tex/latex/base/t2benc.dfu + texmf-dist/tex/latex/base/t2cenc.dfu + texmf-dist/tex/latex/base/testpage.tex + texmf-dist/tex/latex/base/texsys.cfg + texmf-dist/tex/latex/base/textcomp.sty + texmf-dist/tex/latex/base/tracefnt.sty + texmf-dist/tex/latex/base/ts1cmr.fd + texmf-dist/tex/latex/base/ts1cmss.fd + texmf-dist/tex/latex/base/ts1cmtt.fd + texmf-dist/tex/latex/base/ts1cmvtt.fd + texmf-dist/tex/latex/base/ts1enc.def + texmf-dist/tex/latex/base/ts1enc.dfu + texmf-dist/tex/latex/base/tuenc.def + texmf-dist/tex/latex/base/tulmdh.fd + texmf-dist/tex/latex/base/tulmr.fd + texmf-dist/tex/latex/base/tulmss.fd + texmf-dist/tex/latex/base/tulmssq.fd + texmf-dist/tex/latex/base/tulmtt.fd + texmf-dist/tex/latex/base/tulmvtt.fd + texmf-dist/tex/latex/base/ucmr.fd + texmf-dist/tex/latex/base/ucmss.fd + texmf-dist/tex/latex/base/ucmtt.fd + texmf-dist/tex/latex/base/ulasy.fd + texmf-dist/tex/latex/base/ullasy.fd + texmf-dist/tex/latex/base/utf8-test.tex + texmf-dist/tex/latex/base/utf8.def + texmf-dist/tex/latex/base/utf8enc.dfu + texmf-dist/tex/latex/base/utf8test.tex + texmf-dist/tex/latex/base/x2enc.dfu +catalogue-date 2017-01-25 23:33:57 +0100 +catalogue-license lppl1.3 +catalogue-topics format +catalogue-version 2017/01/01 PL1 + +name latex-bin +category TLCore +revision 42766 +shortdesc LaTeX executables and man pages. +depend latex +depend babel +depend cm +depend hyphen-base +depend latex-fonts +depend tex-ini-files +depend latexconfig +depend unicode-data +depend latex-bin.ARCH +execute AddFormat name=latex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *latex.ini" fmttriggers=babel,cm,hyphen-base,latex,latex-fonts,tex-ini-files,latexconfig +execute AddFormat name=pdflatex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *pdflatex.ini" fmttriggers=babel,cm,hyphen-base,latex,latex-fonts,tex-ini-files,latexconfig +execute AddFormat name=dvilualatex engine=luatex patterns=language.dat,language.dat.lua options="dvilualatex.ini" fmttriggers=babel,cm,hyphen-base,latex,latex-fonts,tex-ini-files,unicode-data +execute AddFormat name=lualatex engine=luatex patterns=language.dat,language.dat.lua options="lualatex.ini" fmttriggers=babel,cm,hyphen-base,latex,latex-fonts,tex-ini-files,unicode-data +execute AddFormat name=luajitlatex mode=disabled engine=luajittex patterns=language.dat,language.dat.lua options="lualatex.ini" fmttriggers=babel,cm,hyphen-base,latex,latex-fonts,tex-ini-files,unicode-data +containersize 520 +containerchecksum 897eafee34ca42ad76ccda913de3c64ab176bd7ce791c34260a4216d5adef262d2bcb234f2de036092fbf6c817540155bdfad1d0d0e02fcdd9b623f13dd476c6 +doccontainersize 34048 +doccontainerchecksum ded32b4478c89385ae74e61682cd0e3679491d085e9883ab2d024d9baf6f49bf096ed27defcf04f20899da94b12d6ba2f9f02a3efce5da37ec25666e7df5ceec + +name latex-fonts +category Package +revision 28888 +shortdesc A collection of fonts used in LaTeX distributions +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 17976 +containerchecksum 155cd9fadb99acc4132c085731791520d34cc7579261368628ac6beb69683d596538396a7df8d385eafa06a2515653d89649f50b0bc2ae6c22594f052eeac346 +doccontainersize 1128 +doccontainerchecksum e483e72b2016c2fb888199888a0f39ecc99711aa50f13581486bb020fa0aef1127acece3fcbe88050ee20fde60d2a49943cbaa8b9d17f2c9f5ba87ced523c245 +runfiles size=61 + texmf-dist/fonts/source/public/latex-fonts/circle.mf + texmf-dist/fonts/source/public/latex-fonts/icmcsc10.mf + texmf-dist/fonts/source/public/latex-fonts/icmex10.mf + texmf-dist/fonts/source/public/latex-fonts/icmmi8.mf + texmf-dist/fonts/source/public/latex-fonts/icmsy8.mf + texmf-dist/fonts/source/public/latex-fonts/icmtt8.mf + texmf-dist/fonts/source/public/latex-fonts/ilasy8.mf + texmf-dist/fonts/source/public/latex-fonts/ilcmss8.mf + texmf-dist/fonts/source/public/latex-fonts/ilcmssb8.mf + texmf-dist/fonts/source/public/latex-fonts/ilcmssi8.mf + texmf-dist/fonts/source/public/latex-fonts/lasy.mf + texmf-dist/fonts/source/public/latex-fonts/lasy10.mf + texmf-dist/fonts/source/public/latex-fonts/lasy5.mf + texmf-dist/fonts/source/public/latex-fonts/lasy6.mf + texmf-dist/fonts/source/public/latex-fonts/lasy7.mf + texmf-dist/fonts/source/public/latex-fonts/lasy8.mf + texmf-dist/fonts/source/public/latex-fonts/lasy9.mf + texmf-dist/fonts/source/public/latex-fonts/lasyb10.mf + texmf-dist/fonts/source/public/latex-fonts/lcircle10.mf + texmf-dist/fonts/source/public/latex-fonts/lcirclew10.mf + texmf-dist/fonts/source/public/latex-fonts/lcmss8.mf + texmf-dist/fonts/source/public/latex-fonts/lcmssb8.mf + texmf-dist/fonts/source/public/latex-fonts/lcmssi8.mf + texmf-dist/fonts/source/public/latex-fonts/line.mf + texmf-dist/fonts/source/public/latex-fonts/line10.mf + texmf-dist/fonts/source/public/latex-fonts/linew10.mf + texmf-dist/fonts/source/public/latex-fonts/sroman.mf + texmf-dist/fonts/source/public/latex-fonts/sromanu.mf + texmf-dist/fonts/tfm/public/latex-fonts/icmcsc10.tfm + texmf-dist/fonts/tfm/public/latex-fonts/icmex10.tfm + texmf-dist/fonts/tfm/public/latex-fonts/icmmi8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/icmsy8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/icmtt8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/ilasy8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/ilcmss8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/ilcmssb8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/ilcmssi8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lasy10.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lasy5.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lasy6.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lasy7.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lasy8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lasy9.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lasyb10.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lcircle10.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lcirclew10.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lcmss8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lcmssb8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/lcmssi8.tfm + texmf-dist/fonts/tfm/public/latex-fonts/line10.tfm + texmf-dist/fonts/tfm/public/latex-fonts/linew10.tfm +catalogue-ctan /fonts/latex +catalogue-date 2015-11-14 11:44:55 +0100 +catalogue-license lppl +catalogue-topics font font-symbol font-mf + +name latexconfig +category Package +revision 40274 +containersize 4812 +containerchecksum 9188d96ac9da7ed2fa1d2ade216fd12fd017a777ecf656df2611285881f414a89c0cc20afc3931fe10940a9b22a1d72b6273d530048330e7674ff551016b1e81 +runfiles size=10 + texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg + texmf-dist/tex/latex/latexconfig/hyperref.cfg + texmf-dist/tex/latex/latexconfig/latex.ini + texmf-dist/tex/latex/latexconfig/lualatex-patch-kernel.tex + texmf-dist/tex/latex/latexconfig/lualatex-reset-codes.tex + texmf-dist/tex/latex/latexconfig/lualatexiniconfig.tex + texmf-dist/tex/latex/latexconfig/lualatexquotejobname.lua + texmf-dist/tex/latex/latexconfig/lualatexquotejobname.tex + texmf-dist/tex/latex/latexconfig/mllatex.ini + texmf-dist/tex/latex/latexconfig/pdflatex.ini + +name ltxmisc +category Package +revision 21927 +shortdesc Miscellaneous LaTeX packages, etc +containersize 15388 +containerchecksum c4c46a29b0a2aa80be3661a89713d4108ccaf9dc75355624df5164ec5a2196b81ebe05acd540be0627c59631b74d10d86b1958b64782fb922e573aeae96cde96 +runfiles size=17 + texmf-dist/tex/latex/ltxmisc/abstbook.cls + texmf-dist/tex/latex/ltxmisc/beletter.cls + texmf-dist/tex/latex/ltxmisc/bibcheck.sty + texmf-dist/tex/latex/ltxmisc/concrete.sty + texmf-dist/tex/latex/ltxmisc/flashcard.cls + texmf-dist/tex/latex/ltxmisc/iagproc.cls + texmf-dist/tex/latex/ltxmisc/linsys.sty + texmf-dist/tex/latex/ltxmisc/mitpress.sty + texmf-dist/tex/latex/ltxmisc/thrmappendix.sty + texmf-dist/tex/latex/ltxmisc/topcapt.sty + texmf-dist/tex/latex/ltxmisc/vrbexin.sty +catalogue-ctan /macros/latex/contrib/misc +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license collection +catalogue-topics collection + +name lua-alt-getopt +category Package +revision 29349 +shortdesc Process application arguments the same way as getopt_long +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 2000 +containerchecksum ca6cb44b844d45994682c4d852620c3ca9f3ef615fcb4bdfc7060171aae91e3413bdae6322125eaa779a15a83d841fad262008f72314e0d450e3b0250c2a6bde +doccontainersize 3324 +doccontainerchecksum 13837acfd3c9bac355971941bb8c0c119e6005eca91941ce98d77fbbaefd71e84a211e757b727ee0881c0e94b196d6c3e2904b33f2527dae05530d7517cc045e +runfiles size=1 + texmf-dist/scripts/lua-alt-getopt/alt_getopt.lua +catalogue-ctan /support/lua/lua-alt-getopt +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license other-free +catalogue-topics lua-supp +catalogue-version 0.7.0 + +name lua-check-hyphen +category Package +revision 40229 +shortdesc Mark hyphenations in a document, for checking +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 3368 +containerchecksum c6fca42f4294123182038aa1a79a02d9228c988c2b69d0973edd084afe6907b1e45cdfaba426ca8d536435b42fa4d23912442941a650b2e579ef32bd42ff2cc8 +doccontainersize 115356 +doccontainerchecksum 616f8d720eb8dc4c82530056b17aa17f95417afa901892f082655ac6dfd530a510c0b40276eca0b00192f60daf019d620a26de3ab3c595f08aa186d3dceeb92b +runfiles size=3 + texmf-dist/tex/lualatex/lua-check-hyphen/lua-check-hyphen.lua + texmf-dist/tex/lualatex/lua-check-hyphen/lua-check-hyphen.sty +catalogue-ctan /macros/luatex/latex/lua-check-hyphen +catalogue-date 2016-04-02 13:47:33 +0200 +catalogue-license other-free +catalogue-topics hyphenation luatex +catalogue-version 0.4 + +name lua-visual-debug +category Package +revision 41387 +shortdesc Visual debugging with LuaLaTeX +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 3244 +containerchecksum 62c3fdbf9dd24af81dd467f7272612ecc4160757ccf851d36230c5b8bdef50ebef093b3facba32224265f41c46c07cf59d849bcac23134e6924f1d2131678a42 +doccontainersize 388920 +doccontainerchecksum 2e4381d225c56904e2850e8e3a42b840f59ac3f9c379a511e693688f94592ed9e31e1df89f544b6d81750459776ede8fd89a52e2b251d305efaf98e29e377162 +runfiles size=3 + texmf-dist/tex/luatex/lua-visual-debug/lua-visual-debug.lua + texmf-dist/tex/luatex/lua-visual-debug/lua-visual-debug.sty +catalogue-ctan /macros/luatex/generic/lua-visual-debug +catalogue-date 2016-05-30 13:38:17 +0200 +catalogue-license other-free +catalogue-topics debug-supp luatex +catalogue-version 0.5 + +name lua2dox +category Package +revision 29349 +shortdesc Auto-documentation of lua code +longdesc The package extends the well-known C-like language autodoc +longdesc tool, doxygen, to read and document lua code. In use, you edit +longdesc and test your code and periodically run the autodoc tool to +longdesc update the documentation, which may be viewed via an html +longdesc browser. Autodoc tools can read the code well enough to find +longdesc function/... declarations and document them. If the code also +longdesc contains appropriatly formatted "magic comments", the tool can +longdesc use them to supplement the documentation. The package is a +longdesc first prototype of a planned TeX2DoX tool (in development), +longdesc which will process joint (La)TeX/lua documents. +depend lua2dox.ARCH +containersize 7596 +containerchecksum c9c9095dbb0be4e625d5809bce3590ce03874c4253ccf4146d6c46fc61bece65278807cd708ee65f6caf801da486cca4b60dbc83c0b47cc0600d16fa4aebe4bc +doccontainersize 505644 +doccontainerchecksum e7939fffceef8d21def387a39199cae2a5e157df21c97289da8599d314ac8f67f929f8a9c4eec76e91b0052c316d71075e749957b0193d41466ed3c0f39d3474 +runfiles size=7 + texmf-dist/scripts/lua2dox/lua.def + texmf-dist/scripts/lua2dox/lua2dox.lua + texmf-dist/scripts/lua2dox/lua2dox_filter +catalogue-ctan /web/lua2dox +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl1.3 +catalogue-topics litprog +catalogue-version 0.2 + +name luabibentry +category Package +revision 31783 +shortdesc Repeat BibTeX entries in a LuaLaTeX document body +longdesc The package reimplements bibentry, for use in LuaLaTeX. +containersize 2320 +containerchecksum 3d32c106156561ca6acb12fdb20ef547ce96fb00a85d17c4931665262333b183ffe3438ede366254ad7b1e0c051c8c22c43e3e795a912fb82b9636412f739c81 +doccontainersize 144332 +doccontainerchecksum 6a0b0e4d468a830c27ac48345ec1ef8e9c585f96e564330f7c1a018a50bf6fed6aa581396ffd71b82f6017b371597a031d725771868cd15e596fbcf1472c2ccf +srccontainersize 5428 +srccontainerchecksum 14756f4b16d388c0200c09be4e101efdf1351d3e207966244984d43e80d98db1b7432456c75fb8e420e379b28805853211b2392e8dfc1e6a1522b85fed93b4f3 +runfiles size=2 + texmf-dist/tex/lualatex/luabibentry/luabibentry.lua + texmf-dist/tex/lualatex/luabibentry/luabibentry.sty +catalogue-ctan /macros/luatex/latex/luabibentry +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl1.3 +catalogue-topics cite-supp luatex +catalogue-version 0.1a + +name luabidi +category Package +revision 30790 +shortdesc Bidirectional typesetting with LuaLaTeX +longdesc The package attempts to emulate the XeTeX bidi package, in the +longdesc context of LuaTeX. +containersize 2204 +containerchecksum c36920d15074111939e24e84341a39ba5e31d1d9d5847e49a96d12a07b179a1236f6d2ee30177c985f1d405f22324d377e8a0a8ba0b3a62c9b9acabd15971814 +doccontainersize 636 +doccontainerchecksum d52a9d57538077a8589be5e04ffefb68627617a28f1322f326f3eec6817c2235a47486138f377d0360c411f713572b0c74e101d0fab288ff5e0f072b4958c2ce +runfiles size=4 + texmf-dist/tex/lualatex/luabidi/arabmaths.tex + texmf-dist/tex/lualatex/luabidi/autofootnoterule.tex + texmf-dist/tex/lualatex/luabidi/luabidi.sty + texmf-dist/tex/lualatex/luabidi/textwidthfootnoterule.tex +catalogue-ctan /macros/luatex/latex/luabidi +catalogue-date 2015-08-08 19:53:23 +0200 +catalogue-license lppl1.3 +catalogue-topics typesetting luatex +catalogue-version 0.2 + +name luacode +category Package +revision 25193 +shortdesc Helper for executing lua code from within TeX +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 2192 +containerchecksum 1d9e7c52b6848fccb28efb30434e85cd94cf157f448f9f176111c9316a64299324590d91571c9e793f37cd7931c26e1779e0450f22cda3d99920b5c372df3e9a +doccontainersize 412332 +doccontainerchecksum 32f2f1033b52f80247703690892924e41d1db19af6cf342957309d94169935409282fd376f9ffbf20e632e80fcd124771a1e0a5ad62eb966e9bb3d36e5ba98c9 +srccontainersize 9020 +srccontainerchecksum 030fb6996aed211475c6ee982fffe8d8dc2cfe1fcf9710a5791ba18f9225dd5720939643f8aad945b3195485d5cc938650baa406369a4f8420c441130a79ca1a +runfiles size=2 + texmf-dist/tex/lualatex/luacode/luacode.sty +catalogue-ctan /macros/luatex/latex/luacode +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl1.3 +catalogue-topics lua-supp luatex +catalogue-version 1.2a + +name luahyphenrules +category Package +revision 42670 +shortdesc Loading patterns in LuaLaTeX with language.dat +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 2388 +containerchecksum 4c70bd047558a8c0df9e15a2c2c5437f14c54574997982a4ee7ad35cda43d51b8adb082d89b2153b1b21cdd0ba3e6a7de45ac08f4c9b3200ba5dc52ab19ba319 +doccontainersize 39048 +doccontainerchecksum 580ff7cb3203c0ebb1d2d2ad7c12d9d91d3ff6691a86937037f5c39882824e83855e8791faeac9221e0736f32d4ca22b00b5e3020f347d9ef63bb76571f75d19 +runfiles size=2 + texmf-dist/tex/lualatex/luahyphenrules/luahyphenrules.sty +catalogue-ctan /macros/luatex/latex/luahyphenrules +catalogue-date 2016-12-10 11:56:59 +0100 +catalogue-license lppl1.3 +catalogue-topics hyphenation luatex +catalogue-version 1.0 + +name luaindex +category Package +revision 25882 +shortdesc Create index using LuaLaTeX +longdesc Luaindex provides (yet another) index processor, written in +longdesc Lua. +containersize 4488 +containerchecksum 40b353fe23b324777bc145de065e4b28c496a68a901461cd71c9debd105ca63b6d35509138970b02849700c307b5f55de395c2e2e7f2ce73a56125486c054aa2 +doccontainersize 160896 +doccontainerchecksum 7705cc0c10e118e457704451af8c05cbe97f7f7a3075c938f3745b5e6952a95611e6b19d0eaea2551703b3fce874cc826f9eb5e469fe83fd661580e78c595108 +srccontainersize 13396 +srccontainerchecksum d4fc85d29dcac9f29844459cc09390597077d61ae28ab2e852bd398ae9443e675cd29bf9c0899514648f4ab8fb4b7d4bda5905fce841e02809ee9d3c07112aad +runfiles size=6 + texmf-dist/scripts/luaindex/luaindex.lua + texmf-dist/tex/lualatex/luaindex/luaindex.sty +catalogue-ctan /macros/luatex/latex/luaindex +catalogue-date 2015-08-08 19:53:23 +0200 +catalogue-license lppl1.3 +catalogue-topics index +catalogue-version 0.1b + +name luainputenc +category Package +revision 20491 +shortdesc Replacing inputenc for use in LuaTeX +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" -- 256- +longdesc 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 5012 +containerchecksum 3a6d7b8a3d072ea721aff4076fbc9f7ab27f4ad6def5fedcf5da82996d3e750698ea151713b2f4f91cb07b81eff9272647912b0a9c1d73bd024dd3039f3f9109 +doccontainersize 405692 +doccontainerchecksum bd7055b02f3d0325a54d7dc9f6f872fa60f68ad308c983069a165657420158b96e1f15a2d5c5b16e4fac1420ffd7daef60bfe81df61087e1196eaf7ba061120f +srccontainersize 12408 +srccontainerchecksum 74880addf40a75adf392c2a79c4ea88370f45f826d60b9b2087ec517cb405fab0618c3310be712edbfdcee0d1c554bc39241bf6d6168f1ee15f3fb09f0d77ea1 +runfiles size=8 + texmf-dist/tex/lualatex/luainputenc/luainputenc.lua + texmf-dist/tex/lualatex/luainputenc/luainputenc.sty + texmf-dist/tex/lualatex/luainputenc/lutf8.def + texmf-dist/tex/lualatex/luainputenc/lutf8x.def +catalogue-ctan /macros/luatex/latex/luainputenc +catalogue-date 2015-08-03 05:43:12 +0200 +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" +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 464 +containerchecksum cbd2b0185fd2ea258c1ab5f70950c4544d044c7b0bf7d4d1324a87ea167d28639e2b94347d07aa1a8e3cc719d438afc593e90c0982449b6456bf30b3b0cdfcb1 +doccontainersize 30328 +doccontainerchecksum 690e8a7d3925a03e54d73272fccb44858d77bf66adc811d1af72caf9b6c093bd08ead88856132a2b711448445117c35677a302a1cf7e717654be8432f5b112b7 +catalogue-ctan /info/examples/luaintro +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl1.3 +catalogue-topics book-ex +catalogue-version 0.03 + +name lualatex-doc +category Package +revision 30473 +shortdesc A guide to use of LaTeX with LuaTeX +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 8b5ff3f74352ecf77f5148fec2e174d57aa44fca8b9c9b4b16c69030a3530880a67a289198b8fa7f3ffe58735e3700592d825d39fed6a47992bdec28be1a54c6 +doccontainersize 112932 +doccontainerchecksum 90e722171998520c5536361507847151c1a19c873ed0e3c995a1fde6906763a42bccd3398494223296bbd66bbe56c3091e96db39f61032d333d9c91f84b91ea3 +srccontainersize 15188 +srccontainerchecksum d9ca24d3cc592bc980c5c2a75a0100c0a0d138cb3d4325e0e7ac626a9baa75740474af0fbb1c6c767ac9a564be16ed6495bfd32a193c1659529fdce30b6a4432 +catalogue-ctan /info/luatex/lualatex-doc +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license fdl +catalogue-topics luatex-doc + +name lualatex-math +category Package +revision 40621 +shortdesc Fixes for mathematics-related LuaLaTeX issues +longdesc The package patches a few commands of the LaTeX2e kernel and +longdesc the amsmath and mathtools packages to be more compatible with +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. +containersize 2988 +containerchecksum 439c3877b3d6a08fe7f2c7c4473891159fb9df3b7aefe0e944f1c0f84f38aff2b19506a15526676f909e9382d7e67d178e3cf0c63c466534174b7a008825b59a +doccontainersize 181032 +doccontainerchecksum 2ec58d0999de0092063e8668d0c3a4546e644b8aabcca5750ef01b7d2b941030578547f4a2fe3b6e4494f6732bb157f01323f7d14881fddad1cc1a9a766cab80 +srccontainersize 8700 +srccontainerchecksum 7c3d232271e86dabaea7bdc0e1df674afe828fe25f1d3131ab917fcd0e4774437d71dc3c093bdda07c9bea3980266221a311ba2d1ac276f37a283f3d44d6a147 +runfiles size=3 + texmf-dist/tex/lualatex/lualatex-math/lualatex-math.lua + texmf-dist/tex/lualatex/lualatex-math/lualatex-math.sty +catalogue-ctan /macros/luatex/latex/lualatex-math +catalogue-date 2016-04-19 05:57:47 +0200 +catalogue-license lppl1.3 +catalogue-topics maths luatex +catalogue-version 1.6 + +name lualibs +category Package +revision 43153 +shortdesc Additional Lua functions for LuaTeX macro programmers +longdesc Lualibs is a collection of Lua modules useful for general +longdesc programming. The bundle is based on lua modules shipped with +longdesc ConTeXt, and made available in this bundle for use independent +longdesc of ConTeXt. +containersize 73684 +containerchecksum 1a3c7fb3c189e8fdc664ab3d7c3f1a0a781677c2aeb96bd2bd1be981acdec6c2feb981734f08a8f90ad4f221fe5abf2f5792e13a9e3dd494106b4f8527c603b8 +doccontainersize 93576 +doccontainerchecksum 241af8e8756172fb86dc746b5f625e7ae255f49c98a7a02ef6aaea94cfa23750e060c70ee009ae533ffbddd44512a6d4db50b6d6eaf5870e3e3e8f0d9b4b7f5c +srccontainersize 11416 +srccontainerchecksum 767fbd50479b63a270fa37ce4574e9040939c03e94928b8d15ede592547556dca3d56f421f2f7f319570c50fa0283311841ae86955a6310c8b1b6715f265d063 +runfiles size=113 + texmf-dist/tex/luatex/lualibs/lualibs-basic.lua + texmf-dist/tex/luatex/lualibs/lualibs-boolean.lua + texmf-dist/tex/luatex/lualibs/lualibs-compat.lua + texmf-dist/tex/luatex/lualibs/lualibs-dir.lua + texmf-dist/tex/luatex/lualibs/lualibs-extended.lua + texmf-dist/tex/luatex/lualibs/lualibs-file.lua + texmf-dist/tex/luatex/lualibs/lualibs-function.lua + texmf-dist/tex/luatex/lualibs/lualibs-gzip.lua + texmf-dist/tex/luatex/lualibs/lualibs-io.lua + texmf-dist/tex/luatex/lualibs/lualibs-lpeg.lua + texmf-dist/tex/luatex/lualibs/lualibs-lua.lua + texmf-dist/tex/luatex/lualibs/lualibs-math.lua + texmf-dist/tex/luatex/lualibs/lualibs-md5.lua + texmf-dist/tex/luatex/lualibs/lualibs-number.lua + texmf-dist/tex/luatex/lualibs/lualibs-os.lua + texmf-dist/tex/luatex/lualibs/lualibs-package.lua + texmf-dist/tex/luatex/lualibs/lualibs-set.lua + texmf-dist/tex/luatex/lualibs/lualibs-string.lua + texmf-dist/tex/luatex/lualibs/lualibs-table.lua + texmf-dist/tex/luatex/lualibs/lualibs-trac-inf.lua + texmf-dist/tex/luatex/lualibs/lualibs-unicode.lua + texmf-dist/tex/luatex/lualibs/lualibs-url.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-deb.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-dim.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-fil.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-jsn.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-lua.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-prs.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-sta.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-sto.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-str.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-tab.lua + texmf-dist/tex/luatex/lualibs/lualibs-util-tpl.lua + texmf-dist/tex/luatex/lualibs/lualibs.lua +catalogue-ctan /macros/luatex/generic/lualibs +catalogue-date 2017-02-04 14:59:52 +0100 +catalogue-license gpl2 +catalogue-topics lua-supp luatex +catalogue-version 2.5 + +name luamplib +category Package +revision 40217 +shortdesc Use LuaTeX's built-in MetaPost interpreter +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 11536 +containerchecksum c0b9e0a94e326fa745315e614965bb434035d9896c162de43ac41a92a07c43c0cee94a92501e082239b044ddf55599f7b98fce29c621d754f13d47f2d8fa48ae +doccontainersize 162248 +doccontainerchecksum 602ee290b17e724db437007b066e8c7b3827ee111ef762e93163ec117a9b2a62a9bc630ff444f0cc93fc4ecccfded10a15f40b3d657589370b16a0105ffe4cf8 +srccontainersize 24848 +srccontainerchecksum 4e82801bf9fd0aa83831270a3861ff8ba3b12f30bfb1bb52f60c936bc86638b635ed55d9ad2020794b8c030c7d0912921fd2d944e6b2c1a9d84aeff8a5f37ace +runfiles size=12 + texmf-dist/tex/luatex/luamplib/luamplib.lua + texmf-dist/tex/luatex/luamplib/luamplib.sty +catalogue-ctan /macros/luatex/generic/luamplib +catalogue-date 2016-04-02 19:29:34 +0200 +catalogue-license gpl2 +catalogue-topics mp-use graphics-in-tex luatex +catalogue-version 2.11.3 + +name luaotfload +category Package +revision 43194 +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 lualibs +depend luaotfload.ARCH +containersize 441616 +containerchecksum 2548bba0f1b8fba795dd2df4159d9b1930949ee626d1912a6334c2a42fd12bb9752641181fe8ffdcc5338eccf419f0f87ac43ca45dc69b43c8345209353cd6ad +doccontainersize 282244 +doccontainerchecksum 524be0a7804da8c7f2bce2002bd45aaf4dbe3eb6fdbd9820aaca3581dfe96e6f689ba62a4fa1112b407b04fe05a4f35f2066891f2a241e978807ebbc53e682ef +srccontainersize 36532 +srccontainerchecksum 76b057229384a5c98a211c66d13c1c41ad7e9325ab4dad3ee2d27a7aa5508b1033a2a5855514e14b7f527fc40d21c082314e6e8fef12975daae769ab448e9e78 +runfiles size=1248 + texmf-dist/scripts/luaotfload/luaotfload-tool.lua + texmf-dist/scripts/luaotfload/mkcharacters + texmf-dist/scripts/luaotfload/mkglyphlist + texmf-dist/scripts/luaotfload/mkimport + texmf-dist/scripts/luaotfload/mkstatus + texmf-dist/scripts/luaotfload/mktests + texmf-dist/tex/luatex/luaotfload/fontloader-2017-02-11.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-basics.tex + 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-gbn.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-oup.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-tfm.lua + texmf-dist/tex/luatex/luaotfload/fontloader-font-ttf.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts-demo-vf-1.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-syn.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts.lua + texmf-dist/tex/luatex/luaotfload/fontloader-fonts.tex + 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-languages.lua + texmf-dist/tex/luatex/luaotfload/fontloader-languages.tex + texmf-dist/tex/luatex/luaotfload/fontloader-math.lua + texmf-dist/tex/luatex/luaotfload/fontloader-math.tex + texmf-dist/tex/luatex/luaotfload/fontloader-mplib.lua + texmf-dist/tex/luatex/luaotfload/fontloader-mplib.tex + texmf-dist/tex/luatex/luaotfload/fontloader-plain.tex + texmf-dist/tex/luatex/luaotfload/fontloader-preprocessor-test.tex + texmf-dist/tex/luatex/luaotfload/fontloader-preprocessor.lua + texmf-dist/tex/luatex/luaotfload/fontloader-preprocessor.tex + texmf-dist/tex/luatex/luaotfload/fontloader-reference.lua + texmf-dist/tex/luatex/luaotfload/fontloader-swiglib-test.lua + texmf-dist/tex/luatex/luaotfload/fontloader-swiglib-test.tex + texmf-dist/tex/luatex/luaotfload/fontloader-swiglib.lua + texmf-dist/tex/luatex/luaotfload/fontloader-swiglib.tex + texmf-dist/tex/luatex/luaotfload/fontloader-test.tex + 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-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-features.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-glyphlist.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-parsers.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-resolvers.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-status.lua + texmf-dist/tex/luatex/luaotfload/luaotfload.sty +catalogue-ctan /macros/luatex/generic/luaotfload +catalogue-date 2017-02-11 20:26:51 +0100 +catalogue-license gpl2 +catalogue-topics font-use luatex +catalogue-version 2.8-fix-2 + +name luasseq +category Package +revision 37877 +shortdesc Drawing spectral sequences in LuaLaTeX +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 e5ec87d163fd0674c6fc35adb610a623053bfeb5126698fabdcd2e68149b52f0234e65b4c25d7c7945817080ce20fe780912a38ff630e22597529d7e34976af8 +doccontainersize 224504 +doccontainerchecksum 731b3cafd03261bd26582082705f78264589f760d7b9298d1189c8635a4347306830eae64eb1bd4b38ac298c7f4c1e46fcbf4c7f696609727c221a66a7ad89af +srccontainersize 10964 +srccontainerchecksum b7ddef56d7d845d7547bba06027f7fd4c9748e5075668a1d25fc0063f832768873165cb6fdbfa95b2362ca06a7508d228b0b8a3afc67776c38e4490cb0053c8e +runfiles size=11 + texmf-dist/scripts/luasseq/luasseq.lua + texmf-dist/tex/lualatex/luasseq/luasseq.sty +catalogue-ctan /macros/luatex/latex/luasseq +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics maths luatex + +name luatex +category TLCore +revision 43699 +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 hyphen-base +depend knuth-lib +depend luatex +depend plain +depend tex-ini-files +depend unicode-data +depend luatex.ARCH +execute AddFormat name=luatex engine=luatex options="luatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,luatex,plain,tex-ini-files,unicode-data +execute AddFormat name=dviluatex engine=luatex options="dviluatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,luatex,plain,tex-ini-files,unicode-data +execute AddFormat name=luajittex engine=luajittex options="luatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,luatex,plain,tex-ini-files,unicode-data +containersize 12856 +containerchecksum 98d15e50b9f5f052cd1875ba25b5c0c0c43ecdb2c48e2e97bd809e296f90b48bcdc32891c5249febd461511fd18e1104c774bbdd4d677d4b3f8babf64630dade +doccontainersize 1118624 +doccontainerchecksum 2d9e302095c46308a5338a13ed05169c893c8ccab215e3bfa45882f64fd15bb86d58a42a2f721ec55fac9af659e836f072d1e667171d289ffab324ca5a99169e +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-date 2016-06-24 19:18:15 +0200 +catalogue-license gpl2 +catalogue-topics engine + +name luatex85 +category Package +revision 41456 +shortdesc pdfTeX aliases for LuaTeX +longdesc The package provides emulation of pdfTeX primitives for LuaTeX +longdesc v0.85+. +containersize 1736 +containerchecksum 418acb16cd29807748317c90ef601555e842ed5d959bcc65659ac05658a81662049ded3b05caaa1ca12afbe289665fe463218d7d0c222f5bcf1af30da385f956 +doccontainersize 171144 +doccontainerchecksum a68836d7703e6e46eacaff1183913ee2a0b5cbc9d76bda5ce90a38b782d2fa582f7cbcf57a2a9c0a540e14054080ecd5e0346f7bfeeb572aabd1b415f385b265 +srccontainersize 3788 +srccontainerchecksum c446ea467cde9dcb759d5ce37ee06b437d82d1a72329f992f54a4b247534ccae41189ab09b612cbd97e478c9d31e197853f63ddd5f9dca212543063d90531f22 +runfiles size=2 + texmf-dist/tex/generic/luatex85/luatex85.sty +catalogue-ctan /macros/generic/luatex85 +catalogue-date 2016-06-15 11:27:16 +0200 +catalogue-license lppl1.3 +catalogue-topics lua-supp +catalogue-version 1.4 + +name luatexbase +category Package +revision 38550 +shortdesc Basic resource management for LuaTeX code +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. +containersize 3500 +containerchecksum 5d595ceedf9b1fc7ed7b54cb8fceba005a80713606b19f6bcd7c3d891c95a61e5ffc847c9f8e70c44d951feeccfca71137b24bfb3495858dcfaf7a86fbc94826 +doccontainersize 263756 +doccontainerchecksum ca43941d3318a0357b4d790c618a5c98c09d11bc9228c1ccef84f772a34ba52280b14f253f0de00903e379fb0f7d3bff0d675b14f7ba0a935bd762b1b2ccc53b +srccontainersize 8448 +srccontainerchecksum 134d9bd410eb2371b4d0004020236e37e8280cedb041a86c23b23abf4d665324d2bfa433c765fd7372aa5698ca4ce2ee4f64d595a80f4cdc39e1c5de87077a63 +runfiles size=11 + texmf-dist/tex/luatex/luatexbase/luatexbase-attr.sty + texmf-dist/tex/luatex/luatexbase/luatexbase-cctb.sty + texmf-dist/tex/luatex/luatexbase/luatexbase-compat.sty + texmf-dist/tex/luatex/luatexbase/luatexbase-loader.sty + texmf-dist/tex/luatex/luatexbase/luatexbase-mcb.sty + texmf-dist/tex/luatex/luatexbase/luatexbase-modutils.sty + texmf-dist/tex/luatex/luatexbase/luatexbase-regs.sty + texmf-dist/tex/luatex/luatexbase/luatexbase.loader.lua + texmf-dist/tex/luatex/luatexbase/luatexbase.sty +catalogue-ctan /macros/luatex/generic/luatexbase +catalogue-date 2015-10-04 14:09:45 +0200 +catalogue-license lppl1.3 +catalogue-topics luatex +catalogue-version 1.3 + +name luatexko +category Package +revision 43172 +shortdesc Typeset Korean with Lua(La)TeX +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 0.79+ and luaotfload package version +longdesc 2.4+ are required for this package to run. This package also +longdesc requires both cjk-ko and xetexko packages for its full +longdesc functionality. +containersize 23820 +containerchecksum df309bd3fd144170946c05e88f694d7e886ed1441e3cd65385a74c64fa0a5dc1a7d3d5b99d71f9b65bad5a194a95c434a5ed6d99e7ba266c852150864152a941 +doccontainersize 222072 +doccontainerchecksum 2b87196cd87daeda4481620c0471d4b48dc0297d84a6bdadc7823c9c5b68c2aa04d00b4e42591ba6b1c240fdc27fdf852385e07933e3d1810c882e33eb31f283 +runfiles size=32 + texmf-dist/tex/luatex/luatexko/luatexko-core.sty + texmf-dist/tex/luatex/luatexko/luatexko-normalize.lua + texmf-dist/tex/luatex/luatexko/luatexko-uhc2utf8.lua + texmf-dist/tex/luatex/luatexko/luatexko.lua + texmf-dist/tex/luatex/luatexko/luatexko.sty +catalogue-ctan /macros/luatex/generic/luatexko +catalogue-date 2017-02-07 23:29:47 +0100 +catalogue-license lppl1.3 +catalogue-topics luatex korean +catalogue-version 1.16 + +name luatextra +category Package +revision 20747 +shortdesc Additional macros for Plain TeX and LaTeX in LuaTeX +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 1032 +containerchecksum 9b94cc4c417e5db83a1dad3d62b2732c7ab6b847fdc3607939379a87bacd53fa9f22cfd439aeabfedc76b70255222b647d4920f6a6be93ba65c987bcf63c6806 +doccontainersize 317312 +doccontainerchecksum c6eb8cb3e2b806e32310f8ffd2d40c846d58f77c537a1e8b2792e5273c19bf2002d4729c7fd1bed88c799d667e91157e8918df96f2495dc66b634c9af3f1dc90 +srccontainersize 3496 +srccontainerchecksum 234346f19d0c8def16a228a3a65fadbc4be2e36348fc1ecbc634bbed617af706d0508b530b34e940f87e97e0ce9b756b82606e57ecef5d2ff7ed9cf68846e551 +runfiles size=1 + texmf-dist/tex/lualatex/luatextra/luatextra.sty +catalogue-ctan /macros/luatex/latex/luatextra +catalogue-date 2015-08-09 10:51:45 +0200 +catalogue-license pd +catalogue-topics luatex +catalogue-version 1.0.1 + +name luatodonotes +category Package +revision 39019 +shortdesc Add editing annotations in a LuaLaTeX document +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 26156 +containerchecksum 819f6facf94e8fa3c6b5c7871314444e9772ad3a7fa0f430b90173aebf08cf8b1f191b99417e603ec39fd76888ab806aae6aabf8cb8db414c05b15fb278d61c8 +doccontainersize 205140 +doccontainerchecksum e5148989b1b7bd9864bdc30e066fbc39263ff93874742a2f1e8980220f31dbceb4071496843bb4280ba1f6eefb380c320b4fe560e2064b2d3d3c17247317f4ea +srccontainersize 20180 +srccontainerchecksum 55382908ebe3f21faf25bb431b3207732b539994ee369c998f2265f9a3adf910c400ef00666b59607432746fa9195daf2ffd5e208b1823eaa545c6476ba7c67b +runfiles size=34 + texmf-dist/tex/lualatex/luatodonotes/inspect.lua + texmf-dist/tex/lualatex/luatodonotes/luatodonotes.lua + texmf-dist/tex/lualatex/luatodonotes/luatodonotes.sty + texmf-dist/tex/lualatex/luatodonotes/path_line.lua + texmf-dist/tex/lualatex/luatodonotes/path_point.lua +catalogue-also todonotes +catalogue-ctan /macros/luatex/latex/luatodonotes +catalogue-date 2015-12-05 05:56:05 +0100 +catalogue-license lppl1.2 +catalogue-topics notes editorial luatex use-lua +catalogue-version 0.3 + +name luaxml +category Package +revision 32741 +shortdesc Lua library for reading and serialising XML files +longdesc This is a redistribution of a pure lua xml library, LuaXML +longdesc (this version supports Lua 5.2). The library was originally +longdesc distributed as part of the odsfile package, but is made +longdesc available separately in the hope that it can be useful for +longdesc other projects. +containersize 10384 +containerchecksum 93b90769a6a3adbba7113736475b780e446b0d3348b38b4c60743719e47e01b90995b17f30bcef5e3824eb36d8f284de643ff342fc74c1f5a6f6a902ede87c9c +doccontainersize 119640 +doccontainerchecksum 1b352b619d06d0e4b3549572a66306c0cf07ac8575008ac4c1e2dcad7c0d6c963c762de136e70a299338950c409c370251cfe74907e8b43a40121db34e14333e +runfiles size=13 + texmf-dist/tex/luatex/luaxml/dom-sample.lua + texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua + texmf-dist/tex/luatex/luaxml/luaxml-mod-xml.lua + texmf-dist/tex/luatex/luaxml/luaxml-pretty.lua + texmf-dist/tex/luatex/luaxml/luaxml-selectors.lua + texmf-dist/tex/luatex/luaxml/luaxml-stack.lua + texmf-dist/tex/luatex/luaxml/luaxml-testxml.lua +catalogue-ctan /macros/luatex/generic/luaxml +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license other-free +catalogue-topics foreign-import luatex +catalogue-version 0.0.2 + +name makeindex +category Package +revision 40768 +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 b017c3cd1611802e8cf85303288d7d511e474529ebd217643dd4356be256adae06ce4a970c5c52275d4c6b14fce8d3edb15d547b3b8223b629e5191606fed2af +doccontainersize 467736 +doccontainerchecksum 2cd610eaea72ab2ba9439cecc2067fd2b1a081ce7997d962fcc84e2746f03d8609805b6cd30e7eb23c1eb3e26ec4cd0e5518bb489611a0173ba5ab11a16f4045 +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-date 2015-08-03 05:43:12 +0200 +catalogue-license other-free +catalogue-topics index + +name metafont +category Package +revision 42722 +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 +depend metafont.ARCH +execute AddFormat name=mf engine=mf-nowin options="-translate-file=cp227.tcx mf.ini" fmttriggers=metafont +containersize 33508 +containerchecksum 4a7bc1930c210366445d5c656d08a5705991b6172a23d66b13e93eda3387a1267252526e47361e755548e522cb8cff3580e88068fa3f38479bf4370ff02ea284 +doccontainersize 67592 +doccontainerchecksum 5362ca0d9e86d0ab617d1fe1f6cabf9b7ba06ec622b0fc26c7534691f18c8e576ba6748fc24037e0eff20e0feb017e3ce96c89e11bd3b00ea6ff4232a779d116 +runfiles size=36 + 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/modes.mf + texmf-dist/metafont/misc/ps2mfbas.mf +catalogue-also metapost +catalogue-ctan /systems/knuth/dist/mf +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license knuth +catalogue-topics font-devel font-proc +catalogue-version 2.7182818 + +name mflogo +category Package +revision 42428 +shortdesc LaTeX support for Metafont logo fonts +longdesc LaTeX package and font definition file to access the Knuthian +longdesc mflogo fonts described in 'The Metafontbook' and to typeset +longdesc Metafont logos in LaTeX documents. +containersize 1600 +containerchecksum 1fadf9b99008eee5d5ed3ea147c4feb02d4b315b1327a85e90e104c13517af9c8f9e929d4289e05038f3b6650add6ae7d8b95ab18482163b1379faec40fcea0b +doccontainersize 239480 +doccontainerchecksum ef38028e08672790db46b6a5134ef246180b8871f3a35fc60e9c521cb78225d2ada437b66454157a7cf5b1dd34b70c7b16ff31322e85d9e009cb4fbbecf79b85 +srccontainersize 5732 +srccontainerchecksum 80712cfc019ce4f26e91ea09e235f7d031c1b0a6dfa01bd8885500f93464c815ad4adae5aac48b989ca28587f5defc4654ddecbba53d43491736d12c54e4c531 +runfiles size=4 + texmf-dist/fonts/source/public/mflogo/logosl8.mf + texmf-dist/fonts/tfm/public/mflogo/logosl8.tfm + texmf-dist/tex/latex/mflogo/mflogo.sty + texmf-dist/tex/latex/mflogo/ulogo.fd +catalogue-ctan /macros/latex/contrib/mflogo +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license lppl +catalogue-topics font-supp +catalogue-version 2.0 + +name mfnfss +category Package +revision 19410 +shortdesc Packages to typeset oldgerman and pandora fonts in LaTeX +longdesc This bundle contains two packages: - oldgerm, a package to +longdesc typeset with old german fonts designed by Yannis Haralambous. - +longdesc pandora, a package to typeset with Pandora fonts designed by +longdesc Neena Billawala. Note that support for the Pandora fonts is +longdesc also available via the pandora-latex package. +containersize 1832 +containerchecksum d5c087b2d393d939bc441d51da921042fc8d5d8f5894790a3ea75c25fc2c0a7053130b7b6b2fbb7b81ae298ac1a8dd713f5ddcc0ee2f4014a146ca3f2d9578d9 +doccontainersize 172068 +doccontainerchecksum 13eb53b2d71d01467806ce5045afa59d9df0d6dbeaf056795585487a8a84760e1bb4ff7311a78099f0837d673bc3d158014f35e7154a62a86905996295827c25 +srccontainersize 17264 +srccontainerchecksum 6504c3e26c6504383fcdf702a8bb1c71a0ebd78917f3065c58cc3abc0be96de3460c53fd0904fe6c88979bb7d66a0ee7918d491d044ac9391137ffdf1f8c846f +runfiles size=8 + texmf-dist/tex/latex/mfnfss/oldgerm.sty + texmf-dist/tex/latex/mfnfss/ot1panr.fd + texmf-dist/tex/latex/mfnfss/ot1pss.fd + texmf-dist/tex/latex/mfnfss/pandora.sty + texmf-dist/tex/latex/mfnfss/uyfrak.fd + texmf-dist/tex/latex/mfnfss/uygoth.fd + texmf-dist/tex/latex/mfnfss/uyinit.fd + texmf-dist/tex/latex/mfnfss/uyswab.fd +catalogue-ctan /macros/latex/contrib/mfnfss +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics font-supp + +name mfware +category TLCore +revision 40768 +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 3128 +containerchecksum 7bf81e0365520d850e5b068c881f0b120f6616bd9e990018c32be47144b46e4a239f894b0203e754b466b5f1f6d87664479dbd93e8f44f61f6c726727b7c79ac +doccontainersize 101928 +doccontainerchecksum d41c26742be1583fb575b01dba668ad3afa8ac4b8645274d56b4144d8d73e8dd1f4b152d7b54b7332cf14c7f338f98e78ce193622cb255b297c41c642d4af9b5 +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-ctan /systems/knuth/dist/mfware +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license knuth +catalogue-topics collection + +name mptopdf +category Package +revision 41282 +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 +longdesc ConTeXt, yet are maintained as part of it. So in TeX Live we +longdesc pull them out to this separate package for the benefit of LaTeX +longdesc users who do not install the rest of ConTeXt. This can be +longdesc found on CTAN in macros/pdftex/graphics. +depend mptopdf.ARCH +execute AddFormat name=mptopdf engine=pdftex options="-translate-file=cp227.tcx mptopdf.tex" fmttriggers=mptopdf,plain +containersize 38452 +containerchecksum 6c8f2b52801fe8008d0e3d61cb34c0a736a673388395074aeb5770736426e9bc49a91f88cf76242bb07e8688ec6d7ce07f20acf6fe4c7dcce1c84eab45140b0f +doccontainersize 13564 +doccontainerchecksum 399e46e9cfd9b9252ebeebad9b684f50d7b69b2067206677f814777323f4ce0a69ebf4c8c2322a757625db24e0946f4914f76150ea44fc604d916263f115fef7 +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 natbib +category Package +revision 20668 +shortdesc Flexible bibliography support +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 natbib-- +longdesc plainnat, unsrtnat, abbrnat. The bibliography styles produced +longdesc by custom-bib are designed from the start to be compatible with +longdesc natbib. +containersize 16620 +containerchecksum e99f82efd122d20d6cedad89094afcbd78abf48792c1023f0c94a3f882ef83a370de5a3d0128ca72e080aad676dbf9bd78265370d1520b02a7d998406f11232d +doccontainersize 423672 +doccontainerchecksum 0dd07cf417f235c0c8b4bfa463d0e7d2e0130470661d6de1278b0d21d8e80928db4c32226a339710407af030ccd0dd659be086c7c310a5cdbbb93124d6d27349 +srccontainersize 64140 +srccontainerchecksum 0f62fbc4cc7744053e5037fdee50734a7abf888db9b79ca8186965d1a04ac37ca0a63cb4ebd7fcbf61a7528b1c6269de1fc0de89cac42c56426e1c97c06ad1c9 +runfiles size=33 + texmf-dist/bibtex/bst/natbib/abbrvnat.bst + texmf-dist/bibtex/bst/natbib/plainnat.bst + texmf-dist/bibtex/bst/natbib/unsrtnat.bst + texmf-dist/tex/latex/natbib/bibentry.sty + texmf-dist/tex/latex/natbib/natbib.sty +catalogue-ctan /macros/latex/contrib/natbib +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics bibtex-supp +catalogue-version 8.31b + +name nodetree +category Package +revision 43011 +shortdesc visualize node lists in a tree view +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 5364 +containerchecksum a2fb2cc507339032bee358e058ab4af48d4c663f177f93b3a5a05082ffc80f207bf75ff807c2feb1307c664406b81837bb5196a837921032489a7aa725d7b503 +doccontainersize 371936 +doccontainerchecksum 6b71ec53a0c32123eca805e438d307ce3f083e07b053d53797cb133a622f6feffce61a50a7e41baa7641a5bac021d96c3349600310e88fc332c90b4ca4d27e0d +srccontainersize 11116 +srccontainerchecksum ff578ace4c1d9d4ab148770b666c02561663311a660068a9dd75cd0a388026ef255414d94bcc78d562fb2075e77a6d34ef0de9bfb3a1dab3761de8f7c3ebc65f +runfiles size=7 + texmf-dist/tex/luatex/nodetree/nodetree.lua + texmf-dist/tex/luatex/nodetree/nodetree.sty + texmf-dist/tex/luatex/nodetree/nodetree.tex +catalogue-ctan /macros/luatex/generic/nodetree +catalogue-date 2016-07-18 17:20:58 +0200 +catalogue-license lppl1.3 +catalogue-topics lua-supp +catalogue-version 1.2 + +name oberdiek +category Package +revision 43610 +shortdesc A bundle of packages submitted by Heiko Oberdiek +longdesc The bundle comprises packages to provide: accsupp: better +longdesc accessibility support for PDF files; aliascnt: 'alias +longdesc counters'; alphalph: multiple-alphabetic counting +longdesc (a...z,aa...zz,... -- up to the full extent of a TeX counter); +longdesc askinclude: replaces \includeonly by an interactive user +longdesc interface; atbegshi: a modern reimplementation of package +longdesc everyshi; atenddvi: provides \AtEndDvi command; attachfile2: +longdesc attach files to PDF files; atveryend: hooks the very end of a +longdesc document; auxhook: stick stuff at the start of the .aux file; +longdesc bigintcalc: expandable arithmetic operations with big integers +longdesc that can exceed TeX's number limits; bitset: defines and +longdesc implements the data type bit set, a vector of bits; bmpsize: +longdesc get bitmap size and resolution data; bookmark: alternative +longdesc bookmark (outline) organization for package hyperref; +longdesc catchfile: collects the contents of a file and puts it in a +longdesc macro; centernot: a horizontally-centred \not symbol; chemarr: +longdesc extensible chemists' reaction arrows; classlist: record +longdesc information about document class(es) used; colonequals: poor +longdesc man's mathematical relation symbols; dvipscol: dvips colour +longdesc stack management; embedfile: embed files in PDF documents; +longdesc engord: define counter-printing operations producing English +longdesc ordinals; eolgrab: collect arguments delimited by end of line; +longdesc epstopdf: conversion to epstopdf on the fly; etexcmds: adds a +longdesc prefix to eTeX's commands, to avoid conflicts with existing +longdesc macros; flags: setting and clearing flags in bit fields and +longdesc converting the bit field into a decimal number; gettitlestring: +longdesc clean up the string containing the title of a section, etc.; +longdesc grfext: macros for adding and reordering the list of graphics +longdesc file extensions recognised by the graphics package; grffile: +longdesc extend file name processing in the latex-graphics bundle; +longdesc hosub: build collections of packages; holtxdoc: extra +longdesc documentation macros; hologo: bookmark-enabled logos; hopatch: +longdesc safely apply package patches; hycolor: implements the color +longdesc option stuff that is used by packages hyperref and bookmark; +longdesc hypbmsec: bookmarks in sectioning commands; hypcap: anjusting +longdesc anchors of captions; hypdestopt: optimising hyperref's pdfTeX +longdesc driver destinations; hypdoc: hyper-references in the LaTeX +longdesc standard doc package; hypgotoe: experimental package for links +longdesc to embedded files; hyphsubst: substitute hyphenation patterns; +longdesc ifdraft: switch for option draft; iflang: provides expandable +longdesc checks for the current language; ifluatex: looks for LuaTeX +longdesc regardless of its mode and provides the switch \ifluatex; +longdesc ifpdf: provides the \ifpdf switch; ifvtex: provides the \ifvtex +longdesc switch; infwarerr: provides a complete set of macros for +longdesc informations, warnings and error messages with support for +longdesc plain TeX; inputenx: enhanced handling of input encoding; +longdesc intcalc: provides expandable arithmetic operations with +longdesc integers; kvdefinekeys: define key-value keys in the same +longdesc manner as keyval; kvoptions: use package options in key value +longdesc format ; kvsetkeys: a variant of the \setkeys command; +longdesc letltxmacro: Let assignment for LaTeX macros; listingsutf8: +longdesc (partially) extends the listings package to UTF-8 encoding; +longdesc ltxcmds: exports some utility macros from the LaTeX kernel into +longdesc a separate namespace and also provides them for other formats +longdesc such as plain-TeX; luacolor: implements colour support based on +longdesc LuaTeX's node attributes; luatex: utilises new and extended +longdesc features and resources that LuaTeX provides; magicnum: allows +longdesc to access magic numbers by a hierarchical name system; +longdesc makerobust: make a command robust; pagegrid: prints a page grid +longdesc in the background; pagesel: select pages of a document for +longdesc output; pdfcolfoot: using pdfTeX's color stack for footnotes; +longdesc pdfcol: macros for setting and maintaining new color stacks; +longdesc pdfcolmk: pdfTeX COLour MarK -- fake a pdfTeX colour stack +longdesc using marks (not needed for pdfTeX 1.40.0 and later); +longdesc pdfcolparallel: fixes colour problems in package parallel; +longdesc pdfcolparcolumns: fixes colour problems in package parcolumns; +longdesc pdfcrypt: setting PDF encryption; pdfescape: pdfTeX's escape +longdesc features using TeX or e-TeX; pdflscape: landscape pages in PDF; +longdesc pdfrender: control PDF rendering modes; pdftexcmds: provide +longdesc pdfTeX primitives missing in LuaTeX; picture: dimens for +longdesc picture macros; pmboxdraw: poor man's box drawing characters; +longdesc protecteddef: define a command that protected against +longdesc expansion; refcount: using the numeric values of references; +longdesc rerunfilecheck: checksum based rerun checks on auxiliary files; +longdesc resizegather: automatically resize overly large equations; +longdesc rotchiffre: performs simple rotation cyphers; scrindex: +longdesc redefines environment 'theindex' of package 'index', if a class +longdesc from KOMA-Script is loaded; selinput: select the input encoding +longdesc by specifying pairs of input characters and their glyph names; +longdesc setouterhbox: set \hbox in outer horizontal mode; settobox: +longdesc getting box sizes; soulutf8: extends package soul and adds some +longdesc support for UTF-8; stackrel: extensions of the \stackrel +longdesc command; stampinclude: selects the files for \include by +longdesc inspecting the timestamp of the .aux file(s); stringenc: +longdesc provides \StringEncodingConvert for converting a string between +longdesc different encodings; tabularht: tabulars with height +longdesc specification; tabularkv: key value interface for tabular +longdesc parameters; telprint: print German telephone numbers; +longdesc thepdfnumber: canonical numbers for use in PDF files and +longdesc elsewhere; transparent: using a color stack for transparency +longdesc with pdftex; twoopt: commands with two optional arguments; +longdesc uniquecounter: provides unlimited unique counter; zref: a +longdesc proposed new reference system. Each of the packages is +longdesc represented by two files, a .dtx (documented source) and a PDF +longdesc file; the .ins file necessary for installation is extracted by +longdesc running the .dtx file with Plain TeX. +containersize 226240 +containerchecksum b4ecef834c3485b31517760f4f4883dfa9f81f486d44d65df81e077c014e9ace89c1bef98586477eab11373bde240584a2e0c43b0183736f0d9b9ec895655f52 +doccontainersize 14393776 +doccontainerchecksum 1a0761e257e3e1e6862664aebafa84202a36aa76e9ce4ccbd7518ecfacf482fe55b87e7144812b6a7290926e88d3bc2feb6643472d324b898a44e893d034a74e +srccontainersize 503468 +srccontainerchecksum 7e409dab703867d44cdb6149980dffe92e713061a3c686d09ca75ccf7e396ad68cd8a2482558d233435b982f5f1b4fe3aa5e9f75287acd69b789d55d4dd132e4 +runfiles size=702 + texmf-dist/bibtex/bib/oberdiek/oberdiek-bundle.bib + texmf-dist/bibtex/bib/oberdiek/oberdiek-source.bib + texmf-dist/scripts/oberdiek/luacolor-pre065.lua + texmf-dist/scripts/oberdiek/luacolor.lua + texmf-dist/scripts/oberdiek/magicnum.lua + texmf-dist/scripts/oberdiek/oberdiek.luacolor-pre065.lua + texmf-dist/scripts/oberdiek/oberdiek.luacolor.lua + texmf-dist/scripts/oberdiek/oberdiek.luatex.lua + texmf-dist/scripts/oberdiek/oberdiek.magicnum.lua + texmf-dist/scripts/oberdiek/oberdiek.pdftexcmds.lua + texmf-dist/scripts/oberdiek/pdfatfi.pl + texmf-dist/scripts/oberdiek/pdftexcmds.lua + texmf-dist/tex/generic/oberdiek/alphalph.sty + texmf-dist/tex/generic/oberdiek/atbegshi.sty + texmf-dist/tex/generic/oberdiek/bigintcalc.sty + texmf-dist/tex/generic/oberdiek/bitset.sty + texmf-dist/tex/generic/oberdiek/catchfile.sty + texmf-dist/tex/generic/oberdiek/embedfile.sty + texmf-dist/tex/generic/oberdiek/engord.sty + texmf-dist/tex/generic/oberdiek/eolgrab.sty + texmf-dist/tex/generic/oberdiek/etexcmds.sty + texmf-dist/tex/generic/oberdiek/fibnum.sty + texmf-dist/tex/generic/oberdiek/gettitlestring.sty + texmf-dist/tex/generic/oberdiek/hobsub-generic.sty + texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty + texmf-dist/tex/generic/oberdiek/hobsub.sty + texmf-dist/tex/generic/oberdiek/hologo.sty + texmf-dist/tex/generic/oberdiek/hyphsubst.sty + texmf-dist/tex/generic/oberdiek/iflang.sty + texmf-dist/tex/generic/oberdiek/ifpdf.sty + texmf-dist/tex/generic/oberdiek/ifvtex.sty + texmf-dist/tex/generic/oberdiek/infwarerr.sty + texmf-dist/tex/generic/oberdiek/intcalc.sty + texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty + texmf-dist/tex/generic/oberdiek/kvsetkeys.sty + texmf-dist/tex/generic/oberdiek/ltxcmds.sty + texmf-dist/tex/generic/oberdiek/luatex-loader.sty + texmf-dist/tex/generic/oberdiek/luatex.sty + texmf-dist/tex/generic/oberdiek/magicnum.sty + texmf-dist/tex/generic/oberdiek/mleftright.sty + texmf-dist/tex/generic/oberdiek/pdfcol.sty + texmf-dist/tex/generic/oberdiek/pdfcrypt.sty + texmf-dist/tex/generic/oberdiek/pdfescape.sty + texmf-dist/tex/generic/oberdiek/pdfrender.sty + texmf-dist/tex/generic/oberdiek/pdftexcmds.sty + texmf-dist/tex/generic/oberdiek/protecteddef.sty + texmf-dist/tex/generic/oberdiek/rotchiffre.sty + texmf-dist/tex/generic/oberdiek/se-ascii-print.def + texmf-dist/tex/generic/oberdiek/se-ascii.def + texmf-dist/tex/generic/oberdiek/se-clean7bit.def + texmf-dist/tex/generic/oberdiek/se-cp1250.def + texmf-dist/tex/generic/oberdiek/se-cp1251.def + texmf-dist/tex/generic/oberdiek/se-cp1252.def + texmf-dist/tex/generic/oberdiek/se-cp1257.def + texmf-dist/tex/generic/oberdiek/se-cp437.def + texmf-dist/tex/generic/oberdiek/se-cp850.def + texmf-dist/tex/generic/oberdiek/se-cp852.def + texmf-dist/tex/generic/oberdiek/se-cp855.def + texmf-dist/tex/generic/oberdiek/se-cp858.def + texmf-dist/tex/generic/oberdiek/se-cp865.def + texmf-dist/tex/generic/oberdiek/se-cp866.def + texmf-dist/tex/generic/oberdiek/se-dec-mcs.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-1.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-10.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-11.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-13.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-14.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-15.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-16.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-2.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-3.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-4.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-5.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-6.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-7.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-8.def + texmf-dist/tex/generic/oberdiek/se-iso-8859-9.def + texmf-dist/tex/generic/oberdiek/se-koi8-r.def + texmf-dist/tex/generic/oberdiek/se-mac-centeuro.def + texmf-dist/tex/generic/oberdiek/se-mac-cyrillic.def + texmf-dist/tex/generic/oberdiek/se-mac-roman.def + texmf-dist/tex/generic/oberdiek/se-nextstep.def + texmf-dist/tex/generic/oberdiek/se-pdfdoc.def + texmf-dist/tex/generic/oberdiek/se-utf16le.def + texmf-dist/tex/generic/oberdiek/se-utf32be.def + texmf-dist/tex/generic/oberdiek/se-utf32le.def + texmf-dist/tex/generic/oberdiek/se-utf8.def + texmf-dist/tex/generic/oberdiek/setouterhbox.sty + texmf-dist/tex/generic/oberdiek/soulutf8.sty + texmf-dist/tex/generic/oberdiek/stringenc.sty + texmf-dist/tex/generic/oberdiek/telprint.sty + texmf-dist/tex/generic/oberdiek/thepdfnumber.sty + texmf-dist/tex/generic/oberdiek/uniquecounter.sty + texmf-dist/tex/latex/oberdiek/accsupp-dvipdfm.def + texmf-dist/tex/latex/oberdiek/accsupp-dvips.def + texmf-dist/tex/latex/oberdiek/accsupp-pdftex.def + texmf-dist/tex/latex/oberdiek/accsupp.sty + texmf-dist/tex/latex/oberdiek/aliascnt.sty + texmf-dist/tex/latex/oberdiek/askinclude.sty + texmf-dist/tex/latex/oberdiek/atenddvi.sty + texmf-dist/tex/latex/oberdiek/atfi-dvipdfmx.def + texmf-dist/tex/latex/oberdiek/atfi-dvips.def + texmf-dist/tex/latex/oberdiek/atfi-pdftex.def + texmf-dist/tex/latex/oberdiek/attachfile2.sty + texmf-dist/tex/latex/oberdiek/atveryend.sty + texmf-dist/tex/latex/oberdiek/auxhook.sty + texmf-dist/tex/latex/oberdiek/bkm-dvipdfm.def + texmf-dist/tex/latex/oberdiek/bkm-dvips.def + texmf-dist/tex/latex/oberdiek/bkm-dvipsone.def + texmf-dist/tex/latex/oberdiek/bkm-pdftex.def + texmf-dist/tex/latex/oberdiek/bkm-textures.def + texmf-dist/tex/latex/oberdiek/bkm-vtex.def + texmf-dist/tex/latex/oberdiek/bmpsize-base.sty + texmf-dist/tex/latex/oberdiek/bmpsize-dvipdfm.def + texmf-dist/tex/latex/oberdiek/bmpsize-dvipdfmx.def + texmf-dist/tex/latex/oberdiek/bmpsize-dvips.def + texmf-dist/tex/latex/oberdiek/bmpsize-test.tex + texmf-dist/tex/latex/oberdiek/bmpsize.sty + texmf-dist/tex/latex/oberdiek/bookmark.sty + texmf-dist/tex/latex/oberdiek/centernot.sty + texmf-dist/tex/latex/oberdiek/chemarr.sty + texmf-dist/tex/latex/oberdiek/classlist.sty + texmf-dist/tex/latex/oberdiek/colonequals.sty + texmf-dist/tex/latex/oberdiek/dtx-attach.sty + texmf-dist/tex/latex/oberdiek/dvipscol.sty + texmf-dist/tex/latex/oberdiek/enparen.sty + texmf-dist/tex/latex/oberdiek/epstopdf-base.sty + texmf-dist/tex/latex/oberdiek/epstopdf.sty + texmf-dist/tex/latex/oberdiek/flags.sty + texmf-dist/tex/latex/oberdiek/grfext.sty + texmf-dist/tex/latex/oberdiek/grffile.sty + texmf-dist/tex/latex/oberdiek/holtxdoc.sty + texmf-dist/tex/latex/oberdiek/hopatch.sty + texmf-dist/tex/latex/oberdiek/hycolor.sty + texmf-dist/tex/latex/oberdiek/hypbmsec.sty + texmf-dist/tex/latex/oberdiek/hypcap.sty + texmf-dist/tex/latex/oberdiek/hypdestopt.sty + texmf-dist/tex/latex/oberdiek/hypdoc.sty + texmf-dist/tex/latex/oberdiek/hypgotoe.sty + texmf-dist/tex/latex/oberdiek/ifdraft.sty + texmf-dist/tex/latex/oberdiek/inputenx.sty + texmf-dist/tex/latex/oberdiek/ix-alias.def + texmf-dist/tex/latex/oberdiek/ix-math.def + texmf-dist/tex/latex/oberdiek/ix-name.def + texmf-dist/tex/latex/oberdiek/ix-slot.def + texmf-dist/tex/latex/oberdiek/ix-uc.def + texmf-dist/tex/latex/oberdiek/ix-utf8enc.dfu + texmf-dist/tex/latex/oberdiek/kvoptions-patch.sty + texmf-dist/tex/latex/oberdiek/kvoptions.sty + texmf-dist/tex/latex/oberdiek/letltxmacro.sty + texmf-dist/tex/latex/oberdiek/listingsutf8.sty + texmf-dist/tex/latex/oberdiek/luacolor.sty + texmf-dist/tex/latex/oberdiek/makerobust.sty + texmf-dist/tex/latex/oberdiek/pagegrid.sty + texmf-dist/tex/latex/oberdiek/pagesel.sty + texmf-dist/tex/latex/oberdiek/pdfcolfoot.sty + texmf-dist/tex/latex/oberdiek/pdfcolmk.sty + texmf-dist/tex/latex/oberdiek/pdfcolparallel.sty + texmf-dist/tex/latex/oberdiek/pdfcolparcolumns.sty + texmf-dist/tex/latex/oberdiek/pdflscape.sty + texmf-dist/tex/latex/oberdiek/picture.sty + texmf-dist/tex/latex/oberdiek/pmboxdraw.sty + texmf-dist/tex/latex/oberdiek/pmboxdrawenc.dfu + texmf-dist/tex/latex/oberdiek/refcount.sty + texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty + texmf-dist/tex/latex/oberdiek/resizegather.sty + texmf-dist/tex/latex/oberdiek/scrindex.sty + texmf-dist/tex/latex/oberdiek/selinput.sty + texmf-dist/tex/latex/oberdiek/settobox.sty + texmf-dist/tex/latex/oberdiek/stackrel.sty + texmf-dist/tex/latex/oberdiek/stampinclude.sty + texmf-dist/tex/latex/oberdiek/tabularht.sty + texmf-dist/tex/latex/oberdiek/tabularkv.sty + texmf-dist/tex/latex/oberdiek/transparent.sty + texmf-dist/tex/latex/oberdiek/twoopt.sty + texmf-dist/tex/latex/oberdiek/x-ascii.def + texmf-dist/tex/latex/oberdiek/x-atarist.def + texmf-dist/tex/latex/oberdiek/x-cp1250.def + texmf-dist/tex/latex/oberdiek/x-cp1251.def + texmf-dist/tex/latex/oberdiek/x-cp1252.def + texmf-dist/tex/latex/oberdiek/x-cp1255.def + texmf-dist/tex/latex/oberdiek/x-cp1257.def + texmf-dist/tex/latex/oberdiek/x-cp437.def + texmf-dist/tex/latex/oberdiek/x-cp850.def + texmf-dist/tex/latex/oberdiek/x-cp852.def + texmf-dist/tex/latex/oberdiek/x-cp855.def + texmf-dist/tex/latex/oberdiek/x-cp858.def + texmf-dist/tex/latex/oberdiek/x-cp865.def + texmf-dist/tex/latex/oberdiek/x-cp866.def + texmf-dist/tex/latex/oberdiek/x-dec-mcs.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-1.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-10.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-13.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-14.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-15.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-16.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-2.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-3.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-4.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-5.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-8.def + texmf-dist/tex/latex/oberdiek/x-iso-8859-9.def + texmf-dist/tex/latex/oberdiek/x-koi8-r.def + texmf-dist/tex/latex/oberdiek/x-mac-centeuro.def + texmf-dist/tex/latex/oberdiek/x-mac-cyrillic.def + texmf-dist/tex/latex/oberdiek/x-mac-roman.def + texmf-dist/tex/latex/oberdiek/x-nextstep.def + texmf-dist/tex/latex/oberdiek/x-verbatim.def + texmf-dist/tex/latex/oberdiek/xcolor-patch.sty + texmf-dist/tex/latex/oberdiek/zref-abspage.sty + texmf-dist/tex/latex/oberdiek/zref-abspos.sty + texmf-dist/tex/latex/oberdiek/zref-base.sty + texmf-dist/tex/latex/oberdiek/zref-counter.sty + texmf-dist/tex/latex/oberdiek/zref-dotfill.sty + texmf-dist/tex/latex/oberdiek/zref-env.sty + texmf-dist/tex/latex/oberdiek/zref-hyperref.sty + texmf-dist/tex/latex/oberdiek/zref-lastpage.sty + texmf-dist/tex/latex/oberdiek/zref-marks.sty + texmf-dist/tex/latex/oberdiek/zref-nextpage.sty + texmf-dist/tex/latex/oberdiek/zref-pageattr.sty + texmf-dist/tex/latex/oberdiek/zref-pagelayout.sty + texmf-dist/tex/latex/oberdiek/zref-perpage.sty + texmf-dist/tex/latex/oberdiek/zref-runs.sty + texmf-dist/tex/latex/oberdiek/zref-savepos.sty + texmf-dist/tex/latex/oberdiek/zref-thepage.sty + texmf-dist/tex/latex/oberdiek/zref-titleref.sty + texmf-dist/tex/latex/oberdiek/zref-totpages.sty + texmf-dist/tex/latex/oberdiek/zref-user.sty + texmf-dist/tex/latex/oberdiek/zref-xr.sty + texmf-dist/tex/latex/oberdiek/zref.sty +catalogue-ctan /macros/latex/contrib/oberdiek +catalogue-date 2017-03-19 14:31:51 +0100 +catalogue-license lppl1.3 +catalogue-topics collection + +name odsfile +category Package +revision 38449 +shortdesc Read OpenDocument Spreadsheet documents as LaTeX tables +longdesc The distribution includes a package and a lua library that can +longdesc together read OpenDocument spreadsheet documents as LaTeX +longdesc tables. Cells in the tables may be processed by LaTeX macros, +longdesc so that (for example) the package may be used for drawing some +longdesc plots. The package uses lua's zip library. +containersize 4972 +containerchecksum 01630fae7653ec618e32d2e5f4b99c7801a6a8aff3de7dbebc98bccafc6747e1381f38196bfff9c83739090f855f41839cb9aac244b552761567452c46f7bffd +doccontainersize 272364 +doccontainerchecksum b97f7c3144580663cd68e747a990ae3905b6541abcb08c0725ed8481024bae7c8daed39b413590f44a3af967926379a1acb3a56d974074bcbabbb628380e517e +runfiles size=4 + texmf-dist/tex/lualatex/odsfile/odsfile.lua + texmf-dist/tex/lualatex/odsfile/odsfile.sty +catalogue-ctan /macros/luatex/latex/odsfile +catalogue-date 2015-09-23 16:15:56 +0200 +catalogue-license lppl1.3 +catalogue-topics foreign-import table luatex +catalogue-version 0.6 + +name pdftex +category TLCore +revision 41149 +shortdesc A TeX extension for direct creation of PDF +longdesc An extension of TeX which can be configured to directly +longdesc generate PDF documents instead of DVI. All current free TeX +longdesc distributions including TeX Live, MacTeX and MiKTeX include +longdesc pdfTeX (Plain TeX) and pdfLaTeX (LaTeX). ConTeXt was originally +longdesc designed around use of pdfTeX, though nowadays it is focused on +longdesc LuaTeX). +depend kpathsea +depend pdftex.ARCH +execute AddFormat name=pdftex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini" fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files +execute AddFormat name=etex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *etex.ini" fmttriggers=cm,etex,hyphen-base,knuth-lib,plain +execute AddFormat name=pdfetex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini" fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files +execute addMap dummy-space.map +containersize 36740 +containerchecksum f888993b4f6f1bc2947cf4a92de008bc4dc3c189dd00694ca78ea106e1a26fb9205f3bd605ab477b95539a81995c18511336ed69481b675406744efd85b1e508 +doccontainersize 1485064 +doccontainerchecksum a2814886ef08173aadd1de9f769510dc8337ce60a79fd5f71fde86f40d437e742ed0427b903f84a74e0e0d2aa30b737b703a98cd03c8cc7f2036ec702e94fd85 +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-date 2016-04-27 08:06:41 +0200 +catalogue-license gpl +catalogue-topics engine + +name placeat +category Package +revision 33526 +shortdesc Absolute content positioning +longdesc The package provides commands so that the user of LuaLaTeX may +longdesc position arbitrary content at any position specified by +longdesc absolute coordinates on the page. The package draws a grid on +longdesc each page of the document, to aid positioning (the grid may be +longdesc disabled, for 'final copy' using the command \placeatsetup). +containersize 3652 +containerchecksum d3aad91e59ac17589daeb1a502172b8d65fc86138b61eea16ebd324c9c13934134f42d24b5e5baa4f415f699587c578ef3a626c853c0dac7023dba8d98db79a7 +doccontainersize 90268 +doccontainerchecksum c16a74a7e02271ad489aad8421cbc48d3aa5a2c086253eae9d7c43592879fdde402d662befdb80a8c8a227833be81ce52551473f5d5c1c9d120aef254c161949 +srccontainersize 11124 +srccontainerchecksum cdf69288a2b99c318a53d8140b416df6836ae074043eb0c0a0a0f724ff4cf84cdc9bbdfe13af29bb8ca0147c9a07fe061bcd9bfeda925421285da0c752668054 +runfiles size=4 + texmf-dist/scripts/placeat/placeat.lua + texmf-dist/tex/lualatex/placeat/placeat.sty +catalogue-also textpos +catalogue-ctan /macros/luatex/latex/placeat +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl1.3 +catalogue-topics layout luatex +catalogue-version 0.1 + +name plain +category Package +revision 43076 +shortdesc The Plain TeX format +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 60720 +containerchecksum a830f1f2f922eb5f849129ae4b7c3b60ca81dc4e15bdec2ec90894f06c8523d74b47e90816677326507c270844f2919d58f9dbcefc508f8d4153c0d44027a839 +runfiles size=336 + texmf-dist/makeindex/plain/plaintex.ist + texmf-dist/tex/plain/base/fontchart.tex + texmf-dist/tex/plain/base/gkpmac.tex + texmf-dist/tex/plain/base/letter.tex + texmf-dist/tex/plain/base/list-latin.tex + texmf-dist/tex/plain/base/list.tex + texmf-dist/tex/plain/base/llist.tex + texmf-dist/tex/plain/base/mptmac.tex + texmf-dist/tex/plain/base/picmac.tex + texmf-dist/tex/plain/base/plain.tex + texmf-dist/tex/plain/base/wlist.tex + texmf-dist/tex/plain/config/aleph.ini + texmf-dist/tex/plain/config/bplain.ini + texmf-dist/tex/plain/config/etex.ini + texmf-dist/tex/plain/config/omega.ini + texmf-dist/tex/plain/config/pdfbplain.ini + texmf-dist/tex/plain/config/pdfetex.ini + texmf-dist/tex/plain/config/pdftexmagfix.tex + texmf-dist/tex/plain/config/tex.ini + texmf-dist/tex/plain/config/unicode-letters.def +catalogue-ctan /macros/plain/base +catalogue-date 2016-11-06 05:33:39 +0100 +catalogue-license knuth +catalogue-topics format +catalogue-version 3.141592653 + +name pslatex +category Package +revision 16416 +shortdesc Use PostScript fonts by default +longdesc A small package that makes LaTeX default to 'standard' +longdesc PostScript fonts. It is basically a merger of the times and the +longdesc (obsolete) mathptm packages from the psnfss suite. You must +longdesc have installed standard LaTeX and the psnfss PostScript fonts +longdesc to use this package. The main novel feature is that the pslatex +longdesc package tries to compensate for the visual differences between +longdesc the Adobe fonts by scaling Helvetica by 90%, and '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 5744 +containerchecksum d2a752117efae8a6853f7f49c82cbfaa18b39a79ab0f1992a2f450a45cafad908bde1bbf61934610086296de6be0e95c3bb763bc71333ee393789641a82bcf14 +srccontainersize 1200 +srccontainerchecksum 828b89a2cf1ace136aa441190dc0cadd8fcea022e6c16b9fd29e6bd5e7151bbb083a41917f9fd39de586dc08a642ec00372d3aa5107397300dc0491b7f3fb2cb +runfiles size=9 + texmf-dist/fonts/map/dvips/pslatex/pcrr8rn.map + texmf-dist/fonts/tfm/public/pslatex/pcrr7tn.tfm + texmf-dist/fonts/tfm/public/pslatex/pcrr8rn.tfm + texmf-dist/fonts/tfm/public/pslatex/pcrr8tn.tfm + texmf-dist/fonts/vf/public/pslatex/pcrr7tn.vf + texmf-dist/fonts/vf/public/pslatex/pcrr8tn.vf + texmf-dist/tex/latex/pslatex/pslatex.sty +catalogue-ctan /macros/latex/contrib/pslatex +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics font-supp obsolete + +name psnfss +category Package +revision 33946 +shortdesc Font support for common PostScript fonts +longdesc Font definition files, macros and font metrics for freely- +longdesc available Adobe Type 1 fonts. The font set consists of the +longdesc '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 +execute addMap charter.map +execute addMap fpls.map +execute addMap pazo.map +execute addMap utopia.map +containersize 11952 +containerchecksum 5522ac181b6249d33b1289eb9542e13db625f4d452b1218701c650005f3eb2708bbb788ec11409fe7d970f65a29f0d52adf253ad6a690d2dce5d24b00d35b4d4 +doccontainersize 484772 +doccontainerchecksum edb6ccc4e7f3d8b939df0949c2e6764b8729f7f2c87354e19c83aa0317f3aed7ef0eb5aa69078487aecae5cdefca1e4646672c44b9d59111b8f59fa7acbb5502 +srccontainersize 16472 +srccontainerchecksum 323ff5377a4d9eaa46f39f9218d193b9d83490d7abe9b616fef1602368b97f47aba0ad587c92eddf6b910229f65ef6a5523a179702cea4cef741d1d6370cde38 +runfiles size=110 + texmf-dist/fonts/map/dvips/psnfss/charter.map + texmf-dist/fonts/map/dvips/psnfss/fpls.map + texmf-dist/fonts/map/dvips/psnfss/pazo.map + texmf-dist/fonts/map/dvips/psnfss/psnfss.map + texmf-dist/fonts/map/dvips/psnfss/utopia.map + texmf-dist/tex/latex/psnfss/8rbch.fd + texmf-dist/tex/latex/psnfss/8rpag.fd + texmf-dist/tex/latex/psnfss/8rpbk.fd + texmf-dist/tex/latex/psnfss/8rpcr.fd + texmf-dist/tex/latex/psnfss/8rphv.fd + texmf-dist/tex/latex/psnfss/8rpnc.fd + texmf-dist/tex/latex/psnfss/8rppl.fd + texmf-dist/tex/latex/psnfss/8rptm.fd + texmf-dist/tex/latex/psnfss/8rput.fd + texmf-dist/tex/latex/psnfss/8rpzc.fd + texmf-dist/tex/latex/psnfss/avant.sty + texmf-dist/tex/latex/psnfss/bookman.sty + texmf-dist/tex/latex/psnfss/chancery.sty + texmf-dist/tex/latex/psnfss/charter.sty + texmf-dist/tex/latex/psnfss/courier.sty + texmf-dist/tex/latex/psnfss/helvet.sty + texmf-dist/tex/latex/psnfss/mathpazo.sty + texmf-dist/tex/latex/psnfss/mathpple.sty + texmf-dist/tex/latex/psnfss/mathptm.sty + texmf-dist/tex/latex/psnfss/mathptmx.sty + texmf-dist/tex/latex/psnfss/newcent.sty + texmf-dist/tex/latex/psnfss/omlbch.fd + texmf-dist/tex/latex/psnfss/omlpag.fd + texmf-dist/tex/latex/psnfss/omlpbk.fd + texmf-dist/tex/latex/psnfss/omlpcr.fd + texmf-dist/tex/latex/psnfss/omlphv.fd + texmf-dist/tex/latex/psnfss/omlpnc.fd + texmf-dist/tex/latex/psnfss/omlppl.fd + texmf-dist/tex/latex/psnfss/omlptm.fd + texmf-dist/tex/latex/psnfss/omlptmcm.fd + texmf-dist/tex/latex/psnfss/omlput.fd + texmf-dist/tex/latex/psnfss/omlpzc.fd + texmf-dist/tex/latex/psnfss/omlzplm.fd + texmf-dist/tex/latex/psnfss/omlzpple.fd + texmf-dist/tex/latex/psnfss/omlztmcm.fd + texmf-dist/tex/latex/psnfss/omsbch.fd + texmf-dist/tex/latex/psnfss/omspag.fd + texmf-dist/tex/latex/psnfss/omspbk.fd + texmf-dist/tex/latex/psnfss/omspcr.fd + texmf-dist/tex/latex/psnfss/omsphv.fd + texmf-dist/tex/latex/psnfss/omspnc.fd + texmf-dist/tex/latex/psnfss/omsppl.fd + texmf-dist/tex/latex/psnfss/omsptm.fd + texmf-dist/tex/latex/psnfss/omsput.fd + texmf-dist/tex/latex/psnfss/omspzc.fd + texmf-dist/tex/latex/psnfss/omspzccm.fd + texmf-dist/tex/latex/psnfss/omszplm.fd + texmf-dist/tex/latex/psnfss/omszpple.fd + texmf-dist/tex/latex/psnfss/omsztmcm.fd + texmf-dist/tex/latex/psnfss/omxpsycm.fd + texmf-dist/tex/latex/psnfss/omxzplm.fd + texmf-dist/tex/latex/psnfss/omxzpple.fd + texmf-dist/tex/latex/psnfss/omxztmcm.fd + texmf-dist/tex/latex/psnfss/ot1bch.fd + texmf-dist/tex/latex/psnfss/ot1pag.fd + texmf-dist/tex/latex/psnfss/ot1pbk.fd + texmf-dist/tex/latex/psnfss/ot1pcr.fd + texmf-dist/tex/latex/psnfss/ot1phv.fd + texmf-dist/tex/latex/psnfss/ot1pnc.fd + texmf-dist/tex/latex/psnfss/ot1ppl.fd + texmf-dist/tex/latex/psnfss/ot1pplj.fd + texmf-dist/tex/latex/psnfss/ot1pplx.fd + texmf-dist/tex/latex/psnfss/ot1ptm.fd + texmf-dist/tex/latex/psnfss/ot1ptmcm.fd + texmf-dist/tex/latex/psnfss/ot1put.fd + texmf-dist/tex/latex/psnfss/ot1pzc.fd + texmf-dist/tex/latex/psnfss/ot1zplm.fd + texmf-dist/tex/latex/psnfss/ot1zpple.fd + texmf-dist/tex/latex/psnfss/ot1ztmcm.fd + texmf-dist/tex/latex/psnfss/palatino.sty + texmf-dist/tex/latex/psnfss/pifont.sty + texmf-dist/tex/latex/psnfss/t1bch.fd + texmf-dist/tex/latex/psnfss/t1pag.fd + texmf-dist/tex/latex/psnfss/t1pbk.fd + texmf-dist/tex/latex/psnfss/t1pcr.fd + texmf-dist/tex/latex/psnfss/t1phv.fd + texmf-dist/tex/latex/psnfss/t1pnc.fd + texmf-dist/tex/latex/psnfss/t1ppl.fd + texmf-dist/tex/latex/psnfss/t1pplj.fd + texmf-dist/tex/latex/psnfss/t1pplx.fd + texmf-dist/tex/latex/psnfss/t1ptm.fd + texmf-dist/tex/latex/psnfss/t1put.fd + texmf-dist/tex/latex/psnfss/t1pzc.fd + texmf-dist/tex/latex/psnfss/times.sty + texmf-dist/tex/latex/psnfss/ts1bch.fd + texmf-dist/tex/latex/psnfss/ts1pag.fd + texmf-dist/tex/latex/psnfss/ts1pbk.fd + texmf-dist/tex/latex/psnfss/ts1pcr.fd + texmf-dist/tex/latex/psnfss/ts1phv.fd + texmf-dist/tex/latex/psnfss/ts1pnc.fd + texmf-dist/tex/latex/psnfss/ts1ppl.fd + texmf-dist/tex/latex/psnfss/ts1pplj.fd + texmf-dist/tex/latex/psnfss/ts1pplx.fd + texmf-dist/tex/latex/psnfss/ts1ptm.fd + texmf-dist/tex/latex/psnfss/ts1put.fd + texmf-dist/tex/latex/psnfss/ts1pzc.fd + texmf-dist/tex/latex/psnfss/ufplm.fd + texmf-dist/tex/latex/psnfss/ufplmbb.fd + texmf-dist/tex/latex/psnfss/upsy.fd + texmf-dist/tex/latex/psnfss/upzd.fd + texmf-dist/tex/latex/psnfss/utopia.sty +catalogue-also psnfssx +catalogue-ctan /macros/latex/required/psnfss +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics font-supp font-use +catalogue-version 9.2a + +name pspicture +category Package +revision 15878 +shortdesc PostScript picture support +longdesc A replacement for LaTeX's picture macros, that uses PostScript +longdesc \special commands. The package is now largely superseded by +longdesc pict2e. +containersize 1808 +containerchecksum c569e44401c94710ad61c1cbf4acb9e5c7b7184ad69c233d93e2eb0d4f8618a98f065b83c3e85901dda5444821f9aa62f0b222e68331c6e24c64c91d6e3e2953 +doccontainersize 42648 +doccontainerchecksum 5e645cbacf38d2b266e239012733f729a2782a0cd7e0c576ca98ebaed77481fdb4e5c7170ed3aa221557720a565928f9d42d36f0b56fded44e3d1db73f88772e +srccontainersize 6040 +srccontainerchecksum 4bf62bf0254df46131ec29b4417c9603be5d1317c52ccd301634ad1544ea5639f205c8247e6d951a6d8c9dc4b65809f7aa790ae7c17e1d2ba4ec1b4ae082b5c2 +runfiles size=2 + texmf-dist/dvips/pspicture/pspicture.ps + texmf-dist/tex/latex/pspicture/pspicture.sty +catalogue-ctan /macros/latex/contrib/pspicture +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics graphics-in-tex obsolete + +name scheme-basic +category Scheme +revision 25923 +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 +longdesc scheme corresponds to collection-basic and collection-latex. +depend collection-basic +depend collection-latex +containersize 440 +containerchecksum b594a9eced1684eb11a1e9403c7b3a88b0239e8f2f93f9992b4efa8c25b2876298ded60106798952a149984ca3ec90ccf746ef5c8b6faf506a3af90be61b75eb + +name scheme-infraonly +category Scheme +revision 41515 +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 texlive.infra +depend kpathsea +depend hyphen-base +depend tetex +containersize 460 +containerchecksum b0db73d8850b7e905df971de0676ab4fc1ce8479be513315168086f1f4186907412ca4efdf74a625ef3ac5209b2a30eb307a790147033a42f98a942665190b85 + +name scheme-minimal +category Scheme +revision 13822 +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 428 +containerchecksum c1fe4cd8289cccdedcb4a20f3c9dadec859e719cb6c2f8caab40ad6bda5f01137940003ecdb1fe0b1f51e48ba8a2f91693aa0e6a6c08ed0bdc53a7cee7900bd2 + +name selnolig +category Package +revision 38721 +shortdesc Selectively disable typographic ligatures +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 53972 +containerchecksum b0f175830f8ba2f35c1a822babd16520ebe886cc4890d48ec8f969a81060d52dc5df1c12b1b0a5d4fbc99d5d0518a7aec3867bea01eb36acfff4d2ec2f2b3816 +doccontainersize 509912 +doccontainerchecksum 50f7ac245cb4837fa4f960f69fbd0dacc228a6892af6b28c6d2e116e6144352721be62cd0865c5370b83f08f66dd7cac346d51963e96baa5a607ae7ff340adb5 +runfiles size=59 + texmf-dist/tex/lualatex/selnolig/selnolig-english-hyphex.sty + texmf-dist/tex/lualatex/selnolig/selnolig-english-patterns.sty + texmf-dist/tex/lualatex/selnolig/selnolig-german-hyphex.sty + texmf-dist/tex/lualatex/selnolig/selnolig-german-patterns.sty + texmf-dist/tex/lualatex/selnolig/selnolig.lua + texmf-dist/tex/lualatex/selnolig/selnolig.sty +catalogue-ctan /macros/luatex/latex/selnolig +catalogue-date 2015-10-26 21:00:20 +0100 +catalogue-license lppl1.3 +catalogue-topics typesetting luatex +catalogue-version 0.302 + +name showhyphens +category Package +revision 39787 +shortdesc Show all possible hyphenations in LuaLaTeX +longdesc With this package, LuaLaTeX will indicate all possible +longdesc hyphenations in the printed output. +containersize 1788 +containerchecksum 56f2180fb03193352dc6a99c22a8df3eb527a7b9367c74ba577a9da7b0e6b207c3635229e8d3e443776357290f4900cf6a59c942802f571d0c127bfc78a37b8f +doccontainersize 86248 +doccontainerchecksum 3fe34faab33ebf270123eb63d59e12a55963b6e4d28d5aa60593428d4fc8d4cbd74ba6db39faa6ad94c1d8bef811520d3776ad0f62f89b1449410a83f24540ed +runfiles size=1 + texmf-dist/tex/lualatex/showhyphens/showhyphens.sty +catalogue-ctan /macros/luatex/latex/showhyphens +catalogue-date 2016-02-19 15:31:25 +0100 +catalogue-license other-free +catalogue-topics hyph-gen luatex +catalogue-version 0.5c + +name spelling +category Package +revision 30715 +shortdesc Support for spell-checking of LuaTeX documents +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 14068 +containerchecksum e86b263eea5d565ada57b37911a92decee96e88edb5d13b080efa7b85f0c659e1bcaaec7c5d3bd0f517f2dc4a20954f365e1ad4e4810d54976f37cf0d90a6361 +doccontainersize 142560 +doccontainerchecksum 0d64484a17533b97dcda6112ecb97c3619ab128a179a91f80a8d89d79bd3a725403a67e8aa64ca0aea12331f7b858086d04c69ca00e679d1a4de4431db64af05 +runfiles size=19 + texmf-dist/scripts/spelling/spelling-main.lua + texmf-dist/scripts/spelling/spelling-recurse.lua + texmf-dist/scripts/spelling/spelling-stage-1.lua + texmf-dist/scripts/spelling/spelling-stage-2.lua + texmf-dist/scripts/spelling/spelling-stage-3.lua + texmf-dist/scripts/spelling/spelling-stage-4.lua + texmf-dist/tex/luatex/spelling/spelling.sty +catalogue-ctan /macros/luatex/generic/spelling +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl1.3 +catalogue-topics luatex spell +catalogue-version 0.41 + +name tetex +category TLCore +revision 43628 +shortdesc scripts and files originally written for or included in teTeX +longdesc teTeX was a comprehensive distribution of TeX, LaTeX and +longdesc family, designed for ease of compilation, installation and +longdesc customisation. In 2006, Thomas Esser announced he would no +longdesc longer be able to support, or to produce new versions of, +longdesc teTeX. With the appearance of TeX live 2007 (whose Unix-system +longdesc TeX support originally derived from teTeX), no-one should be +longdesc using teTeX at all, in new applications. One of the "schemes" +longdesc available when installing TeX live provides a configuration +longdesc very close to that of the old teTeX, but using modern versions +longdesc of programs and packages. +depend tetex.ARCH +execute addMap mathpple.map +containersize 60072 +containerchecksum 22eade74858326f76f6ea22f2eeedcabc313e2e59a36a1a079cfafe7c9351953fb8e381fe9097110336dbbbea9c123a437fbd5e4fb9d7efe395ebdfe0c7d453a +doccontainersize 521384 +doccontainerchecksum ced7b91032c0c7976597358853dfecbef550900f8f523bb4d242a7941a09425e6fd4e5fae2c9d1e6e8e8846dbaeab427d4f4ac3a50f228d71b95279d5e446db9 +runfiles size=105 + 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/allcm.sh + texmf-dist/scripts/texlive/allneeded.sh + texmf-dist/scripts/texlive/dvi2fax.sh + texmf-dist/scripts/texlive/dvired.sh + texmf-dist/scripts/texlive/fmtutil-sys.sh + texmf-dist/scripts/texlive/fmtutil.pl + texmf-dist/scripts/texlive/kpsetool.sh + texmf-dist/scripts/texlive/kpsewhere.sh + texmf-dist/scripts/texlive/mktexlsr.pl + texmf-dist/scripts/texlive/texconfig-dialog.sh + texmf-dist/scripts/texlive/texconfig-sys.sh + texmf-dist/scripts/texlive/texlinks.sh + texmf-dist/scripts/texlive/updmap-sys.sh + texmf-dist/scripts/texlive/updmap.pl + texmf-dist/web2c/updmap.cfg +catalogue-ctan /obsolete/systems/unix/teTeX +catalogue-date 2016-11-04 04:57:58 +0100 +catalogue-license other-free +catalogue-topics distribution obsolete +catalogue-version 3.0 + +name tex +category TLCore +revision 42722 +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 kpathsea +depend plain +depend cm +depend hyphen-base +depend knuth-lib +depend tex.ARCH +execute AddFormat name=tex engine=tex options="tex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain +containersize 836 +containerchecksum aea2489e64b6050a3c0ab35642d18613d8412111e2fa5241f7c1d9efa4212e59c7600f8cdcacd02f4bcd00a629fc832f79c88bf2d7f550deb4f7a7790281b18b +doccontainersize 59420 +doccontainerchecksum 37d944a2dc5ae0b669dea017417e5755b12b1cb63ede6c892b55d86f8a3bd02e3963fece59aa18344a1999d906e860fad273637ec728a49112683c13a2b82fcc +catalogue-ctan /systems/knuth/dist/tex +catalogue-date 2016-06-24 19:18:15 +0200 +catalogue-license knuth +catalogue-topics engine +catalogue-version 3.14159265 + +name tex-ini-files +category Package +revision 40533 +shortdesc Model TeX format creation files +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 3260 +containerchecksum 8ee5bb750c8a1de8bc6cbebbf7c5b0b68548f67d2cd89035a49aea9aef21b18fcb6fe30e57eec02cc0a44c1e21bbe19a35b0033d9696134ca48b5cc800d3db5e +doccontainersize 1332 +doccontainerchecksum bc8d3d6f8ebc39c1c923c01c36186131c34670978ad3b768750b1c0b92b6d12d1065f24eb27e9585af97db6cf11081e82f22e373e911a1fe8fb37f252a446424 +runfiles size=8 + texmf-dist/tex/generic/tex-ini-files/dvilualatex.ini + texmf-dist/tex/generic/tex-ini-files/dviluatex.ini + texmf-dist/tex/generic/tex-ini-files/lualatex.ini + texmf-dist/tex/generic/tex-ini-files/luatex.ini + texmf-dist/tex/generic/tex-ini-files/luatexconfig.tex + texmf-dist/tex/generic/tex-ini-files/pdftexconfig.tex + texmf-dist/tex/generic/tex-ini-files/xelatex.ini + texmf-dist/tex/generic/tex-ini-files/xetex.ini +catalogue-ctan /macros/generic/tex-ini-files +catalogue-date 2016-04-15 13:44:24 +0200 +catalogue-license pd +catalogue-topics latex3 + +name texconfig +category TLCore +revision 40768 +depend texconfig.ARCH +containersize 12428 +containerchecksum 5565d51ffd81e3618de5c4d1e6f1026e6d3ef7bf4a7d41981547ccb5fbae7a9ac26d1864dc260c77800b6fb9cab186201d389b38cca4edc8f99aa61374069d81 +doccontainersize 28132 +doccontainerchecksum 3467b34fee7dc7bda25a85d759ab150d113effb27d64c632d69bea332114372299accf749e112709a39104afeb2c562a1f189c9bbbe41325b27827e515545b79 +runfiles size=19 + texmf-dist/scripts/texlive/texconfig.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-common +category TLCore +revision 40682 +shortdesc TeX Live documentation (common elements) +postaction shortcut type=menu name="TeX Live documentation" cmd=TEXDIR/texmf-dist/doc/texlive/index.html +containersize 348 +containerchecksum f20035cca3eeaf6e60da2ea4adde5f0fd065cd8fac6f02cb6b15dd2f006faff9e33031edffd50d81d0c54bce7299e9122a43f14c35a4faaee45397e24aff8625 +doccontainersize 314896 +doccontainerchecksum a69848e9be4ab76f260b1bfb0223eda957ac1f4a4c47ecadf5b4a87addb0d5d91ba721235831ab6cf7eea2d2f6e71cb443791b4efc2a4d9404de3bd41af62979 + +name texlive-docindex +category TLCore +revision 43757 +shortdesc top-level TeX Live doc.html, etc. +longdesc These files are regenerated as needed, which is often, so we +longdesc make them a separate package. See the tl-update-auto script +longdesc for the process. +containersize 109800 +containerchecksum 2a398b144dec2fb215e6fca618f0e66869515b122294fce5b4ebb1cfd47ae8fcf846eb3952ac705dde307e43d206695630c81a55b4c55b90bebf373aaaa1a0e4 +doccontainersize 121044 +doccontainerchecksum b173611a41750a69d333193fc97d4003c6f3ef76565e72de6ceea1acd94201c4c2c29d3ea24e37f3f6b4e0c2796f32d355ee4c698a3264e9c52418169e974de7 +runfiles size=270 + texmf-dist/scripts/texlive/var/texcatalogue.keywords + +name texlive-en +category TLCore +revision 43638 +shortdesc TeX Live manual (English) +containersize 272 +containerchecksum 50027e2377f7fb2ee2eff296b2215f6ca624f31f6e637591ba3a5780d52c998c12d9059ffb1e943026095c56e0fe2a2593e6463001661fa511c099a7bea2f17d +doccontainersize 1623848 +doccontainerchecksum be8493d5ad850879ab6e3894579190338a8f04797ecd98c95871b36b157a90916577e27943221beea65541ef6662781ec8df5189dcb79b62f696300d86263a0b + +name texlive-msg-translations +category TLCore +revision 42573 +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 112292 +containerchecksum ec6340b36b1fd72b7b39250a93536a620056932d9786822a95cf9f76b7c45a360924bb6f115ff6f86a048782e0bdf94841129066ea47f3277136ff102eda3397 +runfiles size=294 + tlpkg/translations/cs.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.infra +category TLCore +revision 41476 +shortdesc basic TeX Live infrastructure +longdesc This package contains the files needed to get the TeX Live +longdesc tools (notably tlmgr) running: perl modules, xz binaries, plus +longdesc (sometimes) tar and wget. These files end up in the standalone +longdesc install packages, and in the tlcritical repository. +depend texlive.infra.ARCH +postaction shortcut type=menu name="TeX Live Manager" cmd=TEXDIR/bin/win32/tlmgr-gui.exe +containersize 194264 +containerchecksum 583a28fd7a23a68f7a3dee0060d98d60e89e16a32d054604beefd73d1db951ba81e4ae8142fc60deb35bf8ab8b6449a36e99393fe1a5eee086a50b3af431f1c3 +doccontainersize 168904 +doccontainerchecksum dd7c466ca4c94c81a0b7bd0d3ce5938c82f38c878a5b1e6ea68317f064ceecb43f02616c303265998f92bb486f3eddbbc3d6d16cea8c92a57e01f1591219c710 +runfiles size=224 + LICENSE.CTAN + LICENSE.TL + release-texlive.txt + texmf-dist/scripts/texlive/tlmgr.pl + texmf-dist/scripts/texlive/tlmgrgui.pl + texmf-dist/scripts/texlive/uninstall-win32.pl + 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/trustdb.gpg + tlpkg/installer/config.guess + +name tools +category Package +revision 43024 +catalogue latex-tools +shortdesc The LaTeX standard tools bundle +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 38972 +containerchecksum 7b1cc3fbeae8cabcf7e82c302cc97ca44485b237cb08ee06b83810660dffba17fd232299c0cef61ec3cc05888fa70fda5c6a4dbb0569b0896f131438a37e7e15 +doccontainersize 5143216 +doccontainerchecksum e578ab77320bfb69d98c208fccae4919d1bdd90f3c3c86b967ceab842bc8c1348e606db0a858f537cd0eaf888bfe573852ecf4b622f7ba367f33d6ddab2700de +srccontainersize 216356 +srccontainerchecksum 7d4d9329e689b670310926af80dbb38d86789e0a6d3e7cd09dd69eefc4682d9d01e3547b258bc3229f9114f9c313cb27c0fb7ba389002b9ba40123c8e3290021 +runfiles size=79 + texmf-dist/tex/latex/tools/.tex + texmf-dist/tex/latex/tools/afterpage.sty + texmf-dist/tex/latex/tools/array.sty + texmf-dist/tex/latex/tools/bm.sty + texmf-dist/tex/latex/tools/calc.sty + texmf-dist/tex/latex/tools/dcolumn.sty + texmf-dist/tex/latex/tools/delarray.sty + texmf-dist/tex/latex/tools/e.tex + texmf-dist/tex/latex/tools/enumerate.sty + texmf-dist/tex/latex/tools/fontsmpl.sty + texmf-dist/tex/latex/tools/fontsmpl.tex + texmf-dist/tex/latex/tools/ftnright.sty + texmf-dist/tex/latex/tools/h.tex + texmf-dist/tex/latex/tools/hhline.sty + texmf-dist/tex/latex/tools/indentfirst.sty + texmf-dist/tex/latex/tools/layout.sty + texmf-dist/tex/latex/tools/longtable.sty + texmf-dist/tex/latex/tools/multicol.sty + texmf-dist/tex/latex/tools/q.tex + texmf-dist/tex/latex/tools/r.tex + texmf-dist/tex/latex/tools/rawfonts.sty + texmf-dist/tex/latex/tools/s.tex + texmf-dist/tex/latex/tools/shellesc.sty + texmf-dist/tex/latex/tools/showkeys.sty + texmf-dist/tex/latex/tools/somedefs.sty + texmf-dist/tex/latex/tools/tabularx.sty + texmf-dist/tex/latex/tools/thb.sty + texmf-dist/tex/latex/tools/thc.sty + texmf-dist/tex/latex/tools/thcb.sty + texmf-dist/tex/latex/tools/theorem.sty + texmf-dist/tex/latex/tools/thm.sty + texmf-dist/tex/latex/tools/thmb.sty + texmf-dist/tex/latex/tools/thp.sty + texmf-dist/tex/latex/tools/trace.sty + texmf-dist/tex/latex/tools/varioref.sty + texmf-dist/tex/latex/tools/verbatim.sty + texmf-dist/tex/latex/tools/verbtest.tex + texmf-dist/tex/latex/tools/x.tex + texmf-dist/tex/latex/tools/xr.sty + texmf-dist/tex/latex/tools/xspace.sty +catalogue-ctan /macros/latex/required/tools +catalogue-date 2017-01-22 06:24:38 +0100 +catalogue-license lppl1.3 +catalogue-topics collection + +name ucharcat +category Package +revision 38907 +shortdesc Implementation of the (new in 2015) XeTeX \Ucharcat command in lua, for LuaTeX +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 c0573ce2db0471ccc955756484340f06b5fe830a140a45538939c1020d479e337d4e0bcfb549f604833f91846f0f8419286f7d7dc9602eb9d4a9f79148c0fd83 +doccontainersize 159880 +doccontainerchecksum 37b38ffc051a1e2ee7d89ae865eec195e0572c61c7256ae78744cec19fe3a2d8fb8d4e143cbeec9000ec146f5128c2cdabd6d03d7f5a8ff8cf2ae448a4eb446b +srccontainersize 2324 +srccontainerchecksum e2abfe54e559238d4b3663b8ed26dcb4651b19abc9541bb030e703d305fe505f8ef352a9401384fe72323fb33dcb8ae7c4a34371d7746b8c3de85ea267f96fb7 +runfiles size=1 + texmf-dist/tex/latex/ucharcat/ucharcat.sty +catalogue-ctan /macros/latex/contrib/ucharcat +catalogue-date 2015-11-20 05:46:40 +0100 +catalogue-license lppl +catalogue-topics lua-supp luatex +catalogue-version 0.03 + +name unicode-data +category Package +revision 41521 +shortdesc Unicode data and loaders for TeX +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 co- +longdesc ordinated by the LaTeX3 Project as a general resource for TeX +longdesc users. +containersize 221648 +containerchecksum a4140d7de4c728245b8d223ba1447f45e5ca3d70b8fc3eeeef587cf65e11bb99bbe8c3811ebb741f64f09bf32ab263df6fe1294e6083a91aaa5fccadec991be8 +doccontainersize 3484 +doccontainerchecksum 1089af8738282a82e4dc89810e7350b3c5247690dbea1e39aa6229e3fb5ced43837997a5d2a1a96007719da908b15da322db82fac446d18b0d5b0bf1f85c7456 +runfiles size=542 + texmf-dist/tex/generic/unicode-data/CaseFolding.txt + texmf-dist/tex/generic/unicode-data/EastAsianWidth.txt + texmf-dist/tex/generic/unicode-data/LineBreak.txt + texmf-dist/tex/generic/unicode-data/MathClass.txt + texmf-dist/tex/generic/unicode-data/SpecialCasing.txt + texmf-dist/tex/generic/unicode-data/UnicodeData.txt + texmf-dist/tex/generic/unicode-data/load-unicode-data.tex + texmf-dist/tex/generic/unicode-data/load-unicode-math-classes.tex + texmf-dist/tex/generic/unicode-data/load-unicode-xetex-classes.tex +catalogue-ctan /macros/generic/unicode-data +catalogue-date 2016-06-22 19:59:31 +0200 +catalogue-license lppl1.3 +catalogue-topics latex3 +catalogue-version 1.5 + +name updmap-map +category Package +revision 43366 +containersize 161656 +containerchecksum 1b03edbb9a3745a0f9147eb264cbf1668add29775158c68b185e9f095ad0597fd3e5e477657b4c18a392a353a5a7e827bc78f0ca317b5474ea13c83b73b5eec8 +runfiles size=3969 + 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 + +name url +category Package +revision 32528 +shortdesc Verbatim with URL-sensitive line breaks +longdesc The command \url is a form of verbatim command that allows +longdesc linebreaks at certain characters or combinations of characters, +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 5532 +containerchecksum 4ee4fa354f4a98c3812e1cbf62023be7cfedcaa41e6cb70bfb199abde13fe170b559b0c89229fdb7a063e201936dd2a8144a6e6367be4f0fc2bcfb862fe1fb09 +doccontainersize 266856 +doccontainerchecksum e9818015975fab9ddfb6ad1ae2c7be54f79a65298127ed2ab8663aa9fe03af48f76374255e7d97e473e9291153812739ee16f52670a6cb23be1a96f0465103b6 +runfiles size=4 + texmf-dist/tex/latex/url/url.sty +catalogue-also path +catalogue-ctan /macros/latex/contrib/url +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl +catalogue-topics verbatim +catalogue-version 3.4 + +name xdvi +category TLCore +revision 43673 +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 6820 +containerchecksum 579ebb8d64fff9a08b03e4215c367f184dd5a3a565f6d25117bd508da96d869c3a6c7c0a2b010d6bbe2441150cb1a296a8c1d06a735477c5acab03ddb3943e26 +doccontainersize 182996 +doccontainerchecksum fd8e373aa6755a57ef413e5d044a463867a252a1c60c8e251e7aa1724e3a1f8e4bcfe0bbc9ae973434373d7b22156aea9c59eabffba93fdd1f22231c80f36be1 +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-ctan /dviware/xdvi +catalogue-date 2017-02-13 18:55:27 +0100 +catalogue-license other-free +catalogue-topics previewer +catalogue-version 22.87.03 +